| 1 | <?php |
||
| 13 | class AssetEngineManager |
||
| 14 | { |
||
| 15 | private $enginesByExtension = []; |
||
| 16 | private $foldersToWatch = []; |
||
| 17 | private $engines; |
||
| 18 | |||
| 19 | public function addAssetEngines(/* iterable */ $assetEngines) |
||
| 26 | |||
| 27 | 4 | public function addAssetEngine(AssetEngineInterface $assetEngine) |
|
| 40 | |||
| 41 | 4 | public function getEngines() |
|
| 45 | |||
| 46 | 4 | public function getEngineByExtension($extension) |
|
| 55 | |||
| 56 | public function getFoldersToWatch() |
||
| 60 | } |
||
| 61 |
Short variable names may make your code harder to understand. Variable names should be self-descriptive. This check looks for variable names who are shorter than a configured minimum.