Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,4 @@ Dockerfile linguist-detectable=false
/Dockerfile export-ignore
/docker-compose.yml export-ignore
/entrypoint.sh export-ignore
/phpcs.xml export-ignore
/phpunit.xml export-ignore
2 changes: 1 addition & 1 deletion .php-cs-fixer.php
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
'no_empty_comment' => true,
'no_trailing_whitespace_in_comment' => true,
'single_line_comment_spacing' => true,
'single_line_comment_style' => ['comment_types' => ['asterisk', 'hash']]
'single_line_comment_style' => ['comment_types' => ['hash']]
];

$constantNotationRules = [
Expand Down
2 changes: 1 addition & 1 deletion tests/ConfiguratorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ public function testSetParameterKeyValue(): void
public function testSetParameterThrowException(): void
{
$this->expectException(DatabaseException::class);
$this->expectExceptionMessage('Database module only support error mode with exception. You can\'t modify this setting'); // phpcs:ignore
$this->expectExceptionMessage('Database module only support error mode with exception. You can\'t modify this setting');

$params = [
'driver' => 'mysql',
Expand Down
4 changes: 1 addition & 3 deletions tests/DatabaseNamedInstancesTest.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
<?php

/**
* @noinspection SqlDialectInspection
*/
/** @noinspection SqlDialectInspection */

declare(strict_types=1);

Expand Down