Completed
Push — master ( 6322b1...734d8c )
by Siro Díaz
02:56 queued 39s
created
Routify/Order.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
     /**
44 44
      * Returns the uri(the pattern path).
45 45
      *
46
-     * @return mixed
46
+     * @return string
47 47
      */
48 48
 
49 49
     public function getUri() {
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
     /**
54 54
      * Returns the request method registered.
55 55
      *
56
-     * @return mixed
56
+     * @return string
57 57
      */
58 58
 
59 59
     public function getMethod() {
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
     /**
64 64
      * Returns the callback associated to the pattern.
65 65
      *
66
-     * @return mixed
66
+     * @return callable
67 67
      */
68 68
 
69 69
     public function getResponse() {
Please login to merge, or discard this patch.
Routify/RouterParser.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -20,6 +20,9 @@
 block discarded – undo
20 20
      */
21 21
     const PARAMETER_IDENTIFIER = ':';
22 22
 
23
+    /**
24
+     * @param string $path
25
+     */
23 26
     public function __construct($path) {
24 27
         $this->path = $path;
25 28
     }
Please login to merge, or discard this patch.