| 1 | <?php |
||
| 19 | class JsonSchemaCacheWarmer implements CacheWarmerInterface |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var CachedSchemaStorageInterface |
||
| 23 | */ |
||
| 24 | private $cachedSchemaStorage; |
||
| 25 | |||
| 26 | 1 | public function __construct(CachedSchemaStorageInterface $cachedSchemaStorage) |
|
| 30 | |||
| 31 | /** |
||
| 32 | * {@inheritdoc} |
||
| 33 | */ |
||
| 34 | 1 | public function isOptional() |
|
| 38 | |||
| 39 | /** |
||
| 40 | * {@inheritdoc} |
||
| 41 | */ |
||
| 42 | public function warmUp($cacheDir) |
||
| 46 | } |
||
| 47 |