Completed
Push — master ( f94c4d...339dcc )
by Daniel
03:14
created
Routing/Loader/YamlRpcLoader.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -34,6 +34,9 @@
 block discarded – undo
34 34
         throw new ResourceNotFoundException(sprintf('No routes found for "%s".', $path));
35 35
     }
36 36
 
37
+    /**
38
+     * @param string $path
39
+     */
37 40
     public function matchCollection($path, MethodCollection $methods)
38 41
     {
39 42
         foreach ($methods as $name => $method) {
Please login to merge, or discard this patch.
Tests/Routing/Loader/YamlRpcLoaderTest.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -61,6 +61,10 @@
 block discarded – undo
61 61
         return new ControllerNameParser($kernel);
62 62
     }
63 63
 
64
+    /**
65
+     * @param string $namespace
66
+     * @param string $name
67
+     */
64 68
     private function getBundle($namespace, $name)
65 69
     {
66 70
         $bundle = $this->getMock('Symfony\Component\HttpKernel\Bundle\BundleInterface');
Please login to merge, or discard this patch.