@@ -94,7 +94,7 @@ discard block |
||
| 94 | 94 | * Or at least a reasonable approximation, since a function name may not be defined yet. |
| 95 | 95 | * |
| 96 | 96 | * @param callable $callable |
| 97 | - * @return True if the callable represents a function, false otherwise. |
|
| 97 | + * @return boolean if the callable represents a function, false otherwise. |
|
| 98 | 98 | */ |
| 99 | 99 | private function isFunctionCallable(callable $callable): bool |
| 100 | 100 | { |
@@ -106,7 +106,7 @@ discard block |
||
| 106 | 106 | * Determines if a callable represents a closure/anonymous function. |
| 107 | 107 | * |
| 108 | 108 | * @param callable $callable |
| 109 | - * @return True if the callable represents a closure object, false otherwise. |
|
| 109 | + * @return boolean if the callable represents a closure object, false otherwise. |
|
| 110 | 110 | */ |
| 111 | 111 | private function isClosureCallable(callable $callable): bool |
| 112 | 112 | { |
@@ -115,7 +115,7 @@ discard block |
||
| 115 | 115 | |
| 116 | 116 | /** |
| 117 | 117 | * @param callable $callable |
| 118 | - * @return True if the callable represents an invokeable object, false otherwise. |
|
| 118 | + * @return boolean if the callable represents an invokeable object, false otherwise. |
|
| 119 | 119 | */ |
| 120 | 120 | private function isInvokeable(callable $callable): bool |
| 121 | 121 | { |
@@ -126,7 +126,7 @@ discard block |
||
| 126 | 126 | * Determines if a callable represents a method on an object. |
| 127 | 127 | * |
| 128 | 128 | * @param callable $callable |
| 129 | - * @return True if the callable represents a method object, false otherwise. |
|
| 129 | + * @return boolean if the callable represents a method object, false otherwise. |
|
| 130 | 130 | */ |
| 131 | 131 | private function isObjectCallable(callable $callable): bool |
| 132 | 132 | { |
@@ -147,7 +147,7 @@ discard block |
||
| 147 | 147 | * the callable type hint but it would pass `is_callable()`. Because PHP. |
| 148 | 148 | * |
| 149 | 149 | * @param callable $callable |
| 150 | - * @return True if the callable represents a static method, false otherwise. |
|
| 150 | + * @return boolean if the callable represents a static method, false otherwise. |
|
| 151 | 151 | */ |
| 152 | 152 | private function isClassCallable($callable): bool |
| 153 | 153 | { |