@@ -34,6 +34,9 @@ discard block |
||
34 | 34 | } |
35 | 35 | } |
36 | 36 | |
37 | + /** |
|
38 | + * @param integer $id |
|
39 | + */ |
|
37 | 40 | private function processArguments($id, array $arguments) |
38 | 41 | { |
39 | 42 | foreach ($arguments as $argument) { |
@@ -55,6 +58,9 @@ discard block |
||
55 | 58 | } |
56 | 59 | } |
57 | 60 | |
61 | + /** |
|
62 | + * @param integer $factory |
|
63 | + */ |
|
58 | 64 | private function processFactory($factory) |
59 | 65 | { |
60 | 66 | if (null === $factory || !is_array($factory) || !$factory[0] instanceof Reference) { |
@@ -26,7 +26,7 @@ |
||
26 | 26 | |
27 | 27 | public function process(ContainerBuilder $container) |
28 | 28 | { |
29 | - $throwingAutoloader = function ($class) { |
|
29 | + $throwingAutoloader = function($class) { |
|
30 | 30 | throw new \ReflectionException(sprintf('Class %s does not exist', $class)); |
31 | 31 | }; |
32 | 32 | spl_autoload_register($throwingAutoloader); |