You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
thrownew \TypeError(sprintf('Argument 1 passed to %s() must be a boolean or a callable, %s given.', __METHOD__, \is_object($debug) ? \get_class($debug) : \gettype($debug)));
50
+
}
51
+
52
+
if (!\is_string($outputBuffering) && !\is_callable($outputBuffering)) {
53
+
thrownew \TypeError(sprintf('Argument 5 passed to %s() must be a string or a callable, %s given.', __METHOD__, \is_object($outputBuffering) ? \get_class($outputBuffering) : \gettype($outputBuffering)));
if (!\is_string($format) && !\is_callable($format)) {
36
38
thrownew \TypeError(sprintf('Argument 2 passed to %s() must be a string or a callable, %s given.', __METHOD__, \is_object($format) ? \get_class($format) : \gettype($format)));
37
39
}
38
40
41
+
if (!\is_bool($debug) && !\is_callable($debug)) {
42
+
thrownew \TypeError(sprintf('Argument 4 passed to %s() must be a boolean or a callable, %s given.', __METHOD__, \is_object($debug) ? \get_class($debug) : \gettype($debug)));
0 commit comments