Файловый менеджер - Редактировать - /home/clickysoft/public_html/standup.clickysoft.net/vendor/doctrine/dbal/src/Exception/DriverRequired.php
Назад
<?php declare(strict_types=1); namespace Doctrine\DBAL\Exception; use function sprintf; /** @psalm-immutable */ final class DriverRequired extends InvalidArgumentException { /** @param string|null $url The URL that was provided in the connection parameters (if any). */ public static function new(?string $url = null): self { if ($url !== null) { return new self( sprintf( 'The options "driver" or "driverClass" are mandatory if a connection URL without scheme ' . 'is given to DriverManager::getConnection(). Given URL "%s".', $url, ), ); } return new self( 'The options "driver" or "driverClass" are mandatory if no PDO ' . 'instance is given to DriverManager::getConnection().', ); } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.29 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка