Skip to content

Commit

Permalink
fix conflict and php7.4 linting error
Browse files Browse the repository at this point in the history
  • Loading branch information
lhapaipai committed Oct 6, 2023
1 parent fedfd28 commit 819cb7a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
php-versions: [ '7.4', '8.0', '8.1' ]
php-versions: [ '7.4', '8.0', '8.1', '8.2' ]

steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion src/Asset/EntrypointRenderer.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class EntrypointRenderer
public function __construct(
EntrypointsLookup $entrypointsLookup,
TagRenderer $tagRenderer,
$useAbsoluteUrl,
bool $useAbsoluteUrl,
RouterInterface $router = null
) {
$this->entrypointsLookup = $entrypointsLookup;
Expand Down
4 changes: 2 additions & 2 deletions src/Asset/ViteAssetVersionStrategy.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ public function __construct(
string $publicPath,
array $builds,
string $defaultBuildName,
$useAbsoluteUrl,
bool $useAbsoluteUrl,
RouterInterface $router = null,
bool $strictMode = true,
bool $strictMode = true
) {
$this->publicPath = $publicPath;
$this->builds = $builds;
Expand Down

0 comments on commit 819cb7a

Please sign in to comment.