1 | <?php |
||
13 | class AssetEngineManager |
||
14 | { |
||
15 | private $enginesByExtension = []; |
||
16 | private $foldersToWatch = []; |
||
17 | private $engines; |
||
18 | |||
19 | public function addAssetEngines(/* iterable */ $assetEngines) |
||
26 | |||
27 | public function addAssetEngine(AssetEngine $assetEngine) |
||
40 | |||
41 | public function getEngineByExtension($extension) |
||
50 | |||
51 | public function getFoldersToWatch() |
||
55 | } |
||
56 |
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.