Skip to content

Commit 67aa803

Browse files
authoredSep 20, 2023
Merge pull request #11 from codebar-ag/feature-phpstan
Feature PHPStan
2 parents e07140d + 9d1dd05 commit 67aa803

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed
 

‎.github/workflows/phpstan.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@ name: PHPStan
22

33
on:
44
pull_request:
5-
- '**.php'
6-
- 'phpstan.neon.dist'
5+
paths:
6+
- '**.php'
7+
- 'phpstan.neon.dist'
78
push:
89
paths:
910
- '**.php'

‎tests/TestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public function getEnvironmentSetUp($app): void
3939
'prefix' => '',
4040
]);
4141

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

0 commit comments

Comments
 (0)