1 | <?php |
||
12 | class AssetEngineManager |
||
13 | { |
||
14 | private $enginesByExtension = []; |
||
15 | private $foldersToWatch = []; |
||
16 | private $engines; |
||
17 | |||
18 | public function addAssetEngines(/* iterable */ $assetEngines) |
||
25 | |||
26 | 7 | public function addAssetEngine(AssetEngineInterface $assetEngine) |
|
39 | |||
40 | 7 | public function getEngines() |
|
44 | |||
45 | 6 | public function getEngineByExtension($extension) |
|
54 | |||
55 | public function getFoldersToWatch() |
||
59 | } |
||
60 |
Our type inference engine in quite powerful, but sometimes the code does not provide enough clues to go by. In these cases we request you to add a
@return
annotation as described here.