Skip to content

Commit a98fce9

Browse files
authored
Ensure PHPStan Runs Smoothly
1 parent 16a5ab5 commit a98fce9

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/run-phpstan-pull.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,9 @@ jobs:
8484
uses: actions/cache@v4
8585
with:
8686
path: .phpstan.cache
87-
key: "phpstan-result-cache-${​{ github.run_id }}"
87+
key: phpstan-result-cache-${​{ github.run_id }}
8888
restore-keys: |
8989
phpstan-result-cache-
90-
90+
9191
- name: Run PHPStan Tests
9292
run: ./vendor/bin/phpstan analyse

.github/workflows/run-phpstan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ jobs:
9595
uses: actions/cache@v4
9696
with:
9797
path: .phpstan.cache
98-
key: "phpstan-result-cache-${​{ github.run_id }}"
98+
key: phpstan-result-cache-${​{ github.run_id }}
9999
restore-keys: |
100100
phpstan-result-cache-
101101

src/LaravelLivewireTablesServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public function boot(): void
2424
__DIR__.'/../config/livewire-tables.php', 'livewire-tables'
2525
);
2626

27-
// Load Default Translations
27+
// Load Default Translations
2828
$this->loadJsonTranslationsFrom(
2929
__DIR__.'/../resources/lang'
3030
);

0 commit comments

Comments
 (0)