Skip to content

Commit 667f923

Browse files
committed
Fix typo
1 parent 8c9ee23 commit 667f923

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

Classes/Service/RemoveService.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ public function file(string $absoulteFileName): bool
4141

4242
if (!@unlink($absoulteFileName)) {
4343
if (!@is_writable($absoulteFileName)) {
44-
throw new \RuntimeException('Could not remove file: '.$absoulteFileName, 123678123)
44+
throw new \RuntimeException('Could not remove file: ' . $absoulteFileName, 123678123);
4545
}
46-
// Return true if the file no longer exists (don't care _what_ removed
46+
// Return true if the file no longer exists (don't care _what_ removed
4747
// the file, as long as it's gone).
4848
// But return false if the file still exists but couldn't be removed
4949
// by unlink() (for reasons other than write permissions).

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,10 @@
7171
},
7272
"scripts": {
7373
"code-fix": [
74-
"PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix --config Resources/Private/Build/PhpCsFixer.php --cache-file=.Build/phpcs.cache"
74+
"php-cs-fixer fix --config Resources/Private/Build/PhpCsFixer.php --cache-file=.Build/phpcs.cache"
7575
],
7676
"code-check": [
77-
"PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix --config Resources/Private/Build/PhpCsFixer.php --cache-file=.Build/phpcs.cache --dry-run",
77+
"php-cs-fixer fix --config Resources/Private/Build/PhpCsFixer.php --cache-file=.Build/phpcs.cache --dry-run",
7878
"phpstan --memory-limit=1024M"
7979
],
8080
"code-test": [

0 commit comments

Comments
 (0)