Skip to content

Commit 502e6d1

Browse files
SendiMyrkrdg
authored andcommitted
typo (#172)
1 parent a316b52 commit 502e6d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Utils/Callback.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public static function closure($callable, string $method = null): \Closure
4141
*/
4242
public static function invoke($callable, ...$args)
4343
{
44-
trigger_error(__METHOD__ . '() is deprecated, une native invoking.', E_USER_DEPRECATED);
44+
trigger_error(__METHOD__ . '() is deprecated, use native invoking.', E_USER_DEPRECATED);
4545
self::check($callable);
4646
return $callable(...$args);
4747
}
@@ -54,7 +54,7 @@ public static function invoke($callable, ...$args)
5454
*/
5555
public static function invokeArgs($callable, array $args = [])
5656
{
57-
trigger_error(__METHOD__ . '() is deprecated, une native invoking.', E_USER_DEPRECATED);
57+
trigger_error(__METHOD__ . '() is deprecated, use native invoking.', E_USER_DEPRECATED);
5858
self::check($callable);
5959
return $callable(...$args);
6060
}

0 commit comments

Comments
 (0)