static::
assertFalse($info->
hasAdvancedSetting());
// is valid, should not throw exception
$info->
validate();
static::
assertEquals([ 'url' => 'mysql://root:root@localhost:3306/shopware',
'charset' => 'utf8mb4',
'driverOptions' =>
[ \PDO::ATTR_STRINGIFY_FETCHES => true,
],
],
$info->
toDBALParameters());
static::
assertEquals([ 'url' => 'mysql://root:root@localhost:3306',
'charset' => 'utf8mb4',
'driverOptions' =>
[ \PDO::ATTR_STRINGIFY_FETCHES => true,
],
],
$info->
toDBALParameters(true
));
} public function testWithAdvancedSettings(): void
{