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
Copy file name to clipboardExpand all lines: Pipes/AbstractPipes.php
+1-1
Original file line number
Diff line number
Diff line change
@@ -104,7 +104,7 @@ protected function write(): ?array
104
104
stream_set_blocking($input, 0);
105
105
} elseif (!isset($this->inputBuffer[0])) {
106
106
if (!\is_string($input)) {
107
-
if (!is_scalar($input)) {
107
+
if (!\is_scalar($input)) {
108
108
thrownewInvalidArgumentException(sprintf('"%s" yielded a value of type "%s", but only scalars and stream resources are supported.', get_debug_type($this->input), get_debug_type($input)));
0 commit comments