Test Failed
Push — develop ( 221270...24f642 )
by Florian
03:18
created
src/RouteInfo.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
     /**
38 38
      * Gets the handler of the route
39 39
      *
40
-     * @return mixed
40
+     * @return string
41 41
      */
42 42
     public function getHandler(): string
43 43
     {
Please login to merge, or discard this patch.
src/RouteInfoInterface.php 1 patch
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -8,18 +8,18 @@
 block discarded – undo
8 8
  */
9 9
 interface RouteInfoInterface extends \ArrayAccess
10 10
 {
11
-	/**
12
-	 * Gets the handler defined for the route
13
-	 *
14
-	 * @return mixed
15
-	 */
16
-	public function getHandler();
11
+    /**
12
+     * Gets the handler defined for the route
13
+     *
14
+     * @return mixed
15
+     */
16
+    public function getHandler();
17 17
 
18
-	/**
19
-	 * Gets a route attribute by name, if not present it will return null
20
-	 *
21
-	 * @param string $name Name
22
-	 * @return string|null
23
-	 */
24
-	public function get($name): ?string;
18
+    /**
19
+     * Gets a route attribute by name, if not present it will return null
20
+     *
21
+     * @param string $name Name
22
+     * @return string|null
23
+     */
24
+    public function get($name): ?string;
25 25
 }
26 26
\ No newline at end of file
Please login to merge, or discard this patch.