Skip to content

Commit

Permalink
PSR-12
Browse files Browse the repository at this point in the history
  • Loading branch information
janatjak committed Aug 7, 2018
1 parent 24e4e3c commit 7003ca7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -20,7 +20,7 @@ jobs:
- stage: Code Standard Checker
php: 7.2
script:
- php vendor/bin/phpcs --standard=PSR2 ./src ./tests
- php vendor/bin/phpcs --standard=PSR12 ./src ./tests

- stage: Code Coverage
php: 7.2
Expand Down
2 changes: 1 addition & 1 deletion src/SmokeTester.php
Expand Up @@ -57,7 +57,7 @@ public static function createContainer(?string $tempDir = null, ?callable $confi
throw new RuntimeException('Please specify $tempDir in setup or by first argument');
}

$configurator = new Configurator;
$configurator = new Configurator();
$configurator->setTempDirectory($tempDir);

if (is_callable($configuratorCallback)) {
Expand Down
2 changes: 1 addition & 1 deletion tests/AcmeApp/DefaultPresenter.php
Expand Up @@ -30,6 +30,6 @@ public function actionError()

public function actionException()
{
throw new BadRequestException;
throw new BadRequestException();
}
}

0 comments on commit 7003ca7

Please sign in to comment.