Skip to content

Commit 8029b4e

Browse files
committed
cleanup CS
1 parent f532eb3 commit 8029b4e

5 files changed

Lines changed: 6 additions & 5 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ error.log
1616
/tests/test_app/config/TestsQueue/schema-dump-test.lock
1717
/tests/test_app/Plugin/TestBlog/config/Queue/*
1818
.phpunit.cache
19+
.phpcs.cache
1920

2021
# IDE and editor specific files #
2122
#################################

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@
6060
"@cs-check",
6161
"@test"
6262
],
63-
"cs-check": "phpcs --colors -p src/ tests/",
64-
"cs-fix": "phpcbf --colors -p src/ tests/",
63+
"cs-check": "phpcs",
64+
"cs-fix": "phpcbf",
6565
"stan": "@phpstan",
6666
"phpstan": "tools/phpstan analyse",
6767
"stan-baseline": "tools/phpstan --generate-baseline",

tests/comparisons/JobTask.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
/**
1111
* Upload job
1212
*/
13-
class UploadJob implements JobInterface
13+
class UploadJob implements JobInterface // phpcs:ignore Squiz.Classes.ClassFileName.NoMatch
1414
{
1515
/**
1616
* Executes logic for UploadJob

tests/comparisons/JobTaskWithMaxAttempts.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
/**
1111
* Upload job
1212
*/
13-
class UploadJob implements JobInterface
13+
class UploadJob implements JobInterface // phpcs:ignore Squiz.Classes.ClassFileName.NoMatch
1414
{
1515
/**
1616
* The maximum number of times the job may be attempted.

tests/comparisons/JobTaskWithUnique.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
/**
1111
* Upload job
1212
*/
13-
class UploadJob implements JobInterface
13+
class UploadJob implements JobInterface // phpcs:ignore Squiz.Classes.ClassFileName.NoMatch
1414
{
1515
/**
1616
* Whether there should be only one instance of a job on the queue at a time. (optional property)

0 commit comments

Comments
 (0)