Completed
Pull Request — master (#3)
by Tomasz
01:55
created
src/HydratorContainer/FallbackHydratorContainer.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -27,6 +27,10 @@
 block discarded – undo
27 27
         }
28 28
     }
29 29
 
30
+    /**
31
+     * @param string $alias
32
+     * @param string $class
33
+     */
30 34
     public function addAlias($alias, $class)
31 35
     {
32 36
         $handler = $this->getHandler($class);
Please login to merge, or discard this patch.
src/NormalizerContainer/FallbackNormalizerContainer.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -27,6 +27,10 @@
 block discarded – undo
27 27
         }
28 28
     }
29 29
 
30
+    /**
31
+     * @param string $alias
32
+     * @param string $class
33
+     */
30 34
     public function addAlias($alias, $class)
31 35
     {
32 36
         $handler = $this->getHandler($class);
Please login to merge, or discard this patch.
tests/AbstractTestCase.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -8,6 +8,9 @@
 block discarded – undo
8 8
  */
9 9
 abstract class AbstractTestCase extends TestCase
10 10
 {
11
+    /**
12
+     * @param string $exception
13
+     */
11 14
     public function expectException($exception)
12 15
     {
13 16
         version_compare(phpversion(), '7.0.0') > 0
Please login to merge, or discard this patch.