| 1 | <?php |
||
| 23 | final class NoBundleResolver implements BundleResolverInterface |
||
| 24 | { |
||
| 25 | use NotClonableTrait; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @var BundleResolverInterface |
||
| 29 | */ |
||
| 30 | private $decoratedResolver; |
||
| 31 | |||
| 32 | public function __construct(BundleResolverInterface $decoratedResolver) |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @inheritdoc |
||
| 39 | */ |
||
| 40 | public function resolveBundles(Application $application, array $names) |
||
| 48 | } |
||
| 49 |