Skip to content

Commit 87ef7d4

Browse files
authored
Tweaks
1 parent c4637bb commit 87ef7d4

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,8 @@ jobs:
8484
uses: actions/cache@v4
8585
with:
8686
path: .phpstan.cache
87-
key: phpstan-result-cache-${​{ github.run_id }}
88-
restore-keys: |
89-
phpstan-result-cache-
87+
key: ${{ github.run_id }}-phpstan-result-cache
88+
restore-keys: phpstan-result-cache-
9089

9190
- name: Run PHPStan Tests
9291
run: ./vendor/bin/phpstan analyse

.github/workflows/run-phpstan.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,8 @@ jobs:
9595
uses: actions/cache@v4
9696
with:
9797
path: .phpstan.cache
98-
key: phpstan-result-cache-${​{ github.run_id }}
99-
restore-keys: |
100-
phpstan-result-cache-
98+
key: ${{ github.run_id }}-phpstan-result-cache
99+
restore-keys: phpstan-result-cache-
101100

102101
- name: Run PHPStan Tests
103102
run: ./vendor/bin/phpstan analyse

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)