1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 05:50:42 +02:00

[ticket/17496] Fix Implicitly marking parameters as nullable PHP deprecations

Also use union types consistently instead of question marks.
Fixed with php-cs-fixer.

PHPBB-17496
This commit is contained in:
rxu
2025-04-15 12:14:21 +07:00
parent bdbd0be548
commit 7d1ae5bf19
64 changed files with 113 additions and 113 deletions

View File

@@ -73,10 +73,10 @@ class connection_factory
public static function get_connection_from_params(
string $driver,
string $host,
?string $user = null,
?string $password = null,
?string $name = null,
?string $port = null): Connection
string|null $user = null,
string|null $password = null,
string|null $name = null,
string|null $port = null): Connection
{
$available_drivers = DriverManager::getAvailableDrivers();
if (!in_array($driver, $available_drivers))

View File

@@ -37,11 +37,11 @@ class connection_parameter_factory
*/
public static function get_configuration(
string $driver,
?string $host = null,
?string $user = null,
?string $password = null,
?string $name = null,
?string $port = null) : array
string|null $host = null,
string|null $user = null,
string|null $password = null,
string|null $name = null,
string|null $port = null) : array
{
$params = [
'driver' => $driver,
@@ -73,11 +73,11 @@ class connection_parameter_factory
*/
private static function build_connection_parameters(
array $params,
?string $host = null,
?string $user = null,
?string $password = null,
?string $name = null,
?string $port = null) : array
string|null $host = null,
string|null $user = null,
string|null $password = null,
string|null $name = null,
string|null $port = null) : array
{
if ($params['driver'] === 'pdo_sqlite')
{
@@ -120,7 +120,7 @@ class connection_parameter_factory
*
* @return array Doctrine's DBAL configuration for SQLite.
*/
private static function build_sqlite_parameters(array $params, string $path, ?string $user, ?string $password) : array
private static function build_sqlite_parameters(array $params, string $path, string|null $user, string|null $password) : array
{
$params['path'] = $path;