We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d0f60d commit 3fb0757Copy full SHA for 3fb0757
Resources/stubs/CURLStringFile.php
@@ -32,7 +32,7 @@ public function __set(string $name, $value): void
32
}
33
34
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');
+ throw new TypeError('Cannot assign '.gettype($value).' to property CURLStringFile::$data of type string');
36
37
38
$this->name = 'data://application/octet-stream;base64,'.base64_encode($value);
0 commit comments