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

JsonSchemaCacheWarmer   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 25
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Test Coverage

Coverage 62.5%

Importance

Changes 0
Metric Value
wmc 3
lcom 1
cbo 1
dl 0
loc 25
ccs 5
cts 8
cp 0.625
rs 10
c 0
b 0
f 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
A isOptional() 0 4 1
A warmUp() 0 4 1
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