Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
vendor
/
doctrine
/
dbal
:
InvalidDriverClass.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php declare(strict_types=1); namespace Doctrine\DBAL\Exception; use Doctrine\DBAL\Driver; use function sprintf; /** @psalm-immutable */ final class InvalidDriverClass extends InvalidArgumentException { public static function new(string $driverClass): self { return new self( sprintf( 'The given driver class %s has to implement the %s interface.', $driverClass, Driver::class, ), ); } }