Skip to content

Commit

Permalink
Merge pull request #11 from codebar-ag/feature-phpstan
Browse files Browse the repository at this point in the history
Feature PHPStan
  • Loading branch information
StanBarrows authored Sep 20, 2023
2 parents e07140d + 9d1dd05 commit 67aa803
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ name: PHPStan

on:
pull_request:
- '**.php'
- 'phpstan.neon.dist'
paths:
- '**.php'
- 'phpstan.neon.dist'
push:
paths:
- '**.php'
Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public function getEnvironmentSetUp($app): void
'prefix' => '',
]);

if (is_dir(__DIR__ . '/Fixtures/Saloon/') && count(scandir(__DIR__ . '/Fixtures/Saloon')) > 0) {
if (is_dir(__DIR__.'/Fixtures/Saloon/') && count(scandir(__DIR__.'/Fixtures/Saloon')) > 0) {
$app['config']->set('zendesk.subdomain', 'codebar-zendesk');
$app['config']->set('zendesk.auth.email_address', 'fake-email');
$app['config']->set('zendesk.auth.api_token', 'fake-token');
Expand Down

0 comments on commit 67aa803

Please sign in to comment.