Update slevomat/coding-standard to 6.3.6

parent df651b2d
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically" "This file is @generated automatically"
], ],
"content-hash": "6bf4905b268231ccd58bdbe30d4ecf81", "content-hash": "ae54b78f0088f88dbcfa8e179be7c43b",
"packages": [ "packages": [
{ {
"name": "doctrine/cache", "name": "doctrine/cache",
...@@ -2416,16 +2416,16 @@ ...@@ -2416,16 +2416,16 @@
}, },
{ {
"name": "slevomat/coding-standard", "name": "slevomat/coding-standard",
"version": "6.3.3", "version": "6.3.6",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/slevomat/coding-standard.git", "url": "https://github.com/slevomat/coding-standard.git",
"reference": "b905a82255749de847fd4de607c7a4c8163f058d" "reference": "7876032a4f55acf2de2cf3cd538feaf98a8a0fee"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/slevomat/coding-standard/zipball/b905a82255749de847fd4de607c7a4c8163f058d", "url": "https://api.github.com/repos/slevomat/coding-standard/zipball/7876032a4f55acf2de2cf3cd538feaf98a8a0fee",
"reference": "b905a82255749de847fd4de607c7a4c8163f058d", "reference": "7876032a4f55acf2de2cf3cd538feaf98a8a0fee",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -2469,7 +2469,7 @@ ...@@ -2469,7 +2469,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2020-04-28T07:15:08+00:00" "time": "2020-05-22T15:11:14+00:00"
}, },
{ {
"name": "squizlabs/php_codesniffer", "name": "squizlabs/php_codesniffer",
...@@ -2920,8 +2920,8 @@ ...@@ -2920,8 +2920,8 @@
"authors": [ "authors": [
{ {
"name": "Arne Blankerts", "name": "Arne Blankerts",
"email": "arne@blankerts.de", "role": "Developer",
"role": "Developer" "email": "arne@blankerts.de"
} }
], ],
"description": "A small library for converting tokenized PHP source code into XML and potentially other formats", "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
......
...@@ -97,8 +97,10 @@ class StatementIteratorTest extends DbalTestCase ...@@ -97,8 +97,10 @@ class StatementIteratorTest extends DbalTestCase
yield [PortabilityStatement::class]; yield [PortabilityStatement::class];
yield [SQLAnywhereStatement::class]; yield [SQLAnywhereStatement::class];
if (extension_loaded('sqlsrv')) { if (! extension_loaded('sqlsrv')) {
yield [SQLSrvStatement::class]; return;
} }
yield [SQLSrvStatement::class];
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment