Completed
Push — master ( 991688...eacb82 )
by Martin
02:52
created
src/CheckAmbiguousReferencesPass.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -34,6 +34,9 @@  discard block
 block discarded – undo
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
 block discarded – undo
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) {
Please login to merge, or discard this patch.
src/RegisterClassNamedServicesPass.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.