Completed
Push — master ( 1f086b...21063d )
by Christian
12s queued 11s
created
src/ActiveRoute.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
      * @param  string $routeName
26 26
      * @param  string $output
27 27
      *
28
-     * @return bool
28
+     * @return string|null
29 29
      */
30 30
     public function isActiveRoute($routeName, $output = 'active')
31 31
     {
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
      * @param  string $url
48 48
      * @param  string $output
49 49
      *
50
-     * @return bool
50
+     * @return string|null
51 51
      */
52 52
     public function isActiveURL($url, $output = 'active')
53 53
     {
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
      * @param  string $string
63 63
      * @param  string $output
64 64
      *
65
-     * @return bool
65
+     * @return string|null
66 66
      */
67 67
     public function isActiveMatch($string, $output = 'active')
68 68
     {
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
      * @param  array  $routeNames
78 78
      * @param  string $output
79 79
      *
80
-     * @return bool
80
+     * @return string|null
81 81
      */
82 82
     public function areActiveRoutes(array $routeNames, $output = 'active')
83 83
     {
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
      * @param  array  $urls
95 95
      * @param  string $output
96 96
      *
97
-     * @return bool
97
+     * @return string|null
98 98
      */
99 99
     public function areActiveURLs(array $urls, $output = 'active')
100 100
     {
Please login to merge, or discard this patch.