Skip to content
This repository has been archived by the owner on Sep 26, 2020. It is now read-only.

Commit

Permalink
cs fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikzogg committed Nov 4, 2019
1 parent 897f928 commit 90439a3
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 9 deletions.
3 changes: 2 additions & 1 deletion .php_cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,13 @@ return PhpCsFixer\Config::create()
'method_chaining_indentation' => false,
'no_php4_constructor' => true,
'ordered_interfaces' => true,
'php_unit_dedicate_assert' => true,
'php_unit_dedicate_assert_internal_type' => true,
'php_unit_dedicate_assert' => true,
'php_unit_expectation' => true,
'php_unit_mock' => true,
'php_unit_namespaced' => true,
'php_unit_no_expectation_annotation' => true,
'single_line_throw' => false,
'ternary_to_null_coalescing' => true,
'void_return' => true,
])
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@
},
"require-dev": {
"chubbyphp/chubbyphp-mock": "^1.4.2",
"friendsofphp/php-cs-fixer": "^2.15.3",
"friendsofphp/php-cs-fixer": "^2.16",
"infection/infection": "^0.14.2",
"mavimo/phpstan-junit": "^0.2.3",
"nunomaduro/phpinsights": "^1.9",
"php-coveralls/php-coveralls": "^2.1",
"phploc/phploc": "^5.0",
"phpstan/extension-installer": "^1.0.3",
"phpstan/phpstan": "^0.11.19",
"phpunit/phpunit": "^8.4.1",
"phpunit/phpunit": "^8.4.2",
"pimple/pimple": "^3.2.3",
"slim/slim": "^3.0",
"symfony/console": "^2.8|^3.4|^4.2"
Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/Command/CleanDirectoriesCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
*
* @internal
*/
class CleanDirectoriesCommandTest extends TestCase
final class CleanDirectoriesCommandTest extends TestCase
{
public function testGetName(): void
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/ConfigExceptionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
*
* @internal
*/
class ConfigExceptionTest extends TestCase
final class ConfigExceptionTest extends TestCase
{
public function testCreateByEnvironment(): void
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/ConfigMappingTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
*
* @internal
*/
class ConfigMappingTest extends TestCase
final class ConfigMappingTest extends TestCase
{
public function testCreateWithUnsupportedClass(): void
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/ConfigProviderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*
* @internal
*/
class ConfigProviderTest extends TestCase
final class ConfigProviderTest extends TestCase
{
use MockByCallsTrait;

Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/Pimple/ConfigServiceProviderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*
* @internal
*/
class ConfigServiceProviderTest extends TestCase
final class ConfigServiceProviderTest extends TestCase
{
use MockByCallsTrait;

Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/Slim/SlimSettingsServiceProviderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
*
* @internal
*/
class SlimSettingsServiceProviderTest extends TestCase
final class SlimSettingsServiceProviderTest extends TestCase
{
use MockByCallsTrait;

Expand Down

0 comments on commit 90439a3

Please sign in to comment.