@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | * @see https://www.php.net/manual/en/language.oop5.overloading.php#object.get |
44 | 44 | * |
45 | 45 | * @param string $name Property to retrieve |
46 | - * @return mixed The BlackHole instance so it can be chained. |
|
46 | + * @return BlackHole The BlackHole instance so it can be chained. |
|
47 | 47 | */ |
48 | 48 | public function __get($name) |
49 | 49 | { |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | * |
98 | 98 | * @param string $name Method to call |
99 | 99 | * @param mixed[] $arguments Enumerated array of method parameters |
100 | - * @return mixed The BlackHole instance so it can be chained. |
|
100 | + * @return BlackHole The BlackHole instance so it can be chained. |
|
101 | 101 | */ |
102 | 102 | public function __call($name, $arguments) |
103 | 103 | { |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | * |
112 | 112 | * @param string $name Method to call |
113 | 113 | * @param mixed[] $arguments Enumerated array of method parameters |
114 | - * @return mixed A new BlackHole instance so it can be chained. |
|
114 | + * @return BlackHole A new BlackHole instance so it can be chained. |
|
115 | 115 | */ |
116 | 116 | public static function __callStatic($name, $arguments) |
117 | 117 | { |
@@ -160,7 +160,7 @@ discard block |
||
160 | 160 | * |
161 | 161 | * @see https://www.php.net/manual/en/language.oop5.magic.php#object.invoke |
162 | 162 | * |
163 | - * @return string The BlackHole instance so it can be chained. |
|
163 | + * @return BlackHole The BlackHole instance so it can be chained. |
|
164 | 164 | */ |
165 | 165 | public function __invoke() |
166 | 166 | { |
@@ -173,7 +173,7 @@ discard block |
||
173 | 173 | * @see https://www.php.net/manual/en/language.oop5.magic.php#object.set-state |
174 | 174 | * |
175 | 175 | * @param mixed[] $properties Associative array of exported properties |
176 | - * @return object A new BlackHole instance so it can be chained. |
|
176 | + * @return BlackHole A new BlackHole instance so it can be chained. |
|
177 | 177 | */ |
178 | 178 | public static function __set_state($properties) |
179 | 179 | { |