Completed
Pull Request — develop (#14)
by Michael
06:03
created

JsonSchemaCacheWarmer::warmUp()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 4
ccs 0
cts 3
cp 0
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 1
crap 2
1
<?php
2
3
namespace Sulu\Bundle\ValidationBundle\JsonSchema;
4
5
use Symfony\Component\HttpKernel\CacheWarmer\CacheWarmerInterface;
6
7
class JsonSchemaCacheWarmer implements CacheWarmerInterface
8
{
9
    /**
10
     * @var CachedSchemaStorage
11
     */
12
    private $cachedSchemaStorage;
13
14 1
    public function __construct(CachedSchemaStorage $cachedSchemaStorage)
15
    {
16 1
        $this->cachedSchemaStorage = $cachedSchemaStorage;
17 1
    }
18
19 1
    public function isOptional()
20
    {
21 1
        return true;
22
    }
23
24
    /**
25
     * @param string $cacheDir The cache directory
26
     */
27
    public function warmUp($cacheDir)
28
    {
29
        $this->cachedSchemaStorage->initializeCache();
30
    }
31
}
32