Completed
Push — compiler ( 21832f )
by Akihito
05:11
created
src/Compiler.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -59,6 +59,9 @@
 block discarded – undo
59 59
         }
60 60
     }
61 61
 
62
+    /**
63
+     * @param string $method
64
+     */
62 65
     private function isMagicMethod($method) : bool
63 66
     {
64 67
         return \in_array($method, ['__sleep', '__wakeup', 'offsetGet', 'offsetSet', 'offsetExists', 'offsetUnset', 'count', 'ksort', 'asort', 'jsonSerialize'], true);
Please login to merge, or discard this patch.
src/Provide/Representation/HalLink.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -22,6 +22,9 @@
 block discarded – undo
22 22
         $this->router = $router;
23 23
     }
24 24
 
25
+    /**
26
+     * @param string $uri
27
+     */
25 28
     public function getReverseLink($uri) : string
26 29
     {
27 30
         $urlParts = parse_url($uri);
Please login to merge, or discard this patch.