Skip to content

Commit

Permalink
Update slevomat/coding-standard to 6.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
morozov committed May 25, 2020
1 parent 82387d7 commit 07d6bd8
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 10 deletions.
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
"nikic/php-parser": "^4.4",
"phpstan/phpstan": "^0.12",
"phpunit/phpunit": "^8.4.1",
"slevomat/coding-standard": "^6.3.6",
"symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
"vimeo/psalm": "^3.11"
},
Expand Down
16 changes: 8 additions & 8 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions tests/Doctrine/Tests/DBAL/Driver/StatementIteratorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,10 @@ public static function statementProvider() : iterable
yield [PortabilityStatement::class];
yield [SQLAnywhereStatement::class];

if (extension_loaded('sqlsrv')) {
yield [SQLSrvStatement::class];
if (! extension_loaded('sqlsrv')) {
return;
}

yield [SQLSrvStatement::class];
}
}

0 comments on commit 07d6bd8

Please sign in to comment.