Skip to content

Commit ebfe83b

Browse files
authored
Tweaks
1 parent 2cff418 commit ebfe83b

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,5 +100,5 @@ jobs:
100100
- uses: actions/cache/save@v4
101101
id: larastan-save
102102
with:
103-
path: steps.larastan-restore.path
104-
key: steps.larastan-restore.key
103+
path: ${{ steps.larastan-restore.path }}
104+
key: ${{ steps.larastan-restore.path }}

.github/workflows/run-phpstan.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,5 +103,5 @@ jobs:
103103
- uses: actions/cache/save@v4
104104
id: larastan-save
105105
with:
106-
path: steps.larastan-restore.path
107-
key: steps.larastan-restore.key
106+
path: ${{ steps.larastan-restore.path }}
107+
key: ${{ steps.larastan-restore.path }}

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)