1
0
mirror of https://github.com/Intervention/image.git synced 2025-08-31 17:41:58 +02:00

Remove variable cast

This commit is contained in:
Oliver Vogel
2025-05-31 09:49:48 +02:00
parent 6f418db2c4
commit 7d37998d7e

View File

@@ -63,7 +63,7 @@ final class FileTest extends BaseTestCase
$file = new File('foo');
$string = $file->toString();
$this->assertEquals('foo', $string);
$this->assertEquals('foo', (string) $string);
$this->assertEquals('foo', $string);
}
public function testToFilePointer(): void