1 | <?php |
||
16 | class PrivateCollectionResolver extends FileResolverAbstract implements AssetFilterManagerAwareInterface |
||
17 | { |
||
18 | use CollectionTrait; |
||
19 | |||
20 | /** |
||
21 | * @var AssetFilterManager The filterManager service. |
||
22 | */ |
||
23 | protected $filterManager; |
||
24 | |||
25 | /** |
||
26 | * Constructor |
||
27 | * |
||
28 | * Instantiate and optionally populate collections. |
||
29 | * |
||
30 | * @param array|Traversable $collections |
||
31 | */ |
||
32 | public function __construct($collections = array()) |
||
36 | |||
37 | /** |
||
38 | * {@inheritDoc} |
||
39 | */ |
||
40 | public function resolve($name) |
||
66 | |||
67 | /** |
||
68 | * @param string $path |
||
69 | * |
||
70 | * @return \Assetic\Asset\FileAsset|\Assetic\Asset\HttpAsset|null |
||
71 | */ |
||
72 | public function getCollectionAsset($path) |
||
92 | |||
93 | /** |
||
94 | * Set the AssetFilterManager. |
||
95 | * |
||
96 | * @param AssetFilterManager $filterManager |
||
97 | */ |
||
98 | public function setAssetFilterManager(AssetFilterManager $filterManager) |
||
102 | |||
103 | /** |
||
104 | * Get the AssetFilterManager |
||
105 | * |
||
106 | * @return AssetFilterManager |
||
107 | */ |
||
108 | public function getAssetFilterManager() |
||
112 | |||
113 | /** |
||
114 | * {@inheritDoc} |
||
115 | */ |
||
116 | public function collect() |
||
120 | } |
||
121 |
An attempt at access to an undefined property has been detected. This may either be a typographical error or the property has been renamed but there are still references to its old name.
If you really want to allow access to undefined properties, you can define magic methods to allow access. See the php core documentation on Overloading.