Skip to content

Commit

Permalink
Github action version fix + linting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
woodseowl committed Dec 12, 2023
1 parent e957b1e commit fd81a8f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ jobs:
php: [8.1]
stability: [prefer-stable]
include:
- laravel: 9.*
testbench: 7.*
- laravel: 10.*
testbench: 8.*

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion src/StarterKitServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ private function publishFiles(InstallCommand $command)
);
}

public static function populatePlaceholders($files, string $projectName, string $projectDescription = null): void
public static function populatePlaceholders($files, string $projectName, ?string $projectDescription = null): void
{
$replacements = [
':project_name' => $projectName,
Expand Down

0 comments on commit fd81a8f

Please sign in to comment.