Skip to content

Commit 3fb0757

Browse files
Fix CS
1 parent 1d0f60d commit 3fb0757

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Resources/stubs/CURLStringFile.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public function __set(string $name, $value): void
3232
}
3333

3434
if (is_object($value) ? !method_exists($value, '__toString') : !is_scalar($value)) {
35-
throw new \TypeError('Cannot assign '.gettype($value).' to property CURLStringFile::$data of type string');
35+
throw new TypeError('Cannot assign '.gettype($value).' to property CURLStringFile::$data of type string');
3636
}
3737

3838
$this->name = 'data://application/octet-stream;base64,'.base64_encode($value);

0 commit comments

Comments
 (0)