1
0
mirror of https://github.com/Intervention/image.git synced 2025-08-23 14:02:47 +02:00

Implement Driver::version() (#1417)

This commit is contained in:
Oliver Vogel
2025-01-11 08:47:43 +01:00
committed by GitHub
parent 72daad8b89
commit f6e00abf6b
4 changed files with 40 additions and 0 deletions

View File

@@ -206,4 +206,9 @@ final class DriverTest extends BaseTestCase
yield [false, 'foo'];
yield [false, ''];
}
public function testVersion(): void
{
$this->assertTrue(is_string($this->driver->version()));
}
}