Skip to content

Commit

Permalink
ci: fix psalm errors
Browse files Browse the repository at this point in the history
  • Loading branch information
lotyp committed Jun 10, 2024
1 parent 606751d commit 12f981c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ jobs:
uses: shivammathur/setup-php@2.30.4
with:
php-version: ${{ matrix.php-version }}
extensions: none, ctype, dom, json, mbstring, simplexml, tokenizer, xml, xmlwriter, pdo, curl, fileinfo, opcache, pcntl, posix
extensions: none, ctype, dom, json, mbstring, simplexml, tokenizer, xml, xmlwriter, pdo, pdo_mysql, curl, fileinfo, opcache, pcntl, posix
ini-values: error_reporting=E_ALL
coverage: none

Expand Down
2 changes: 1 addition & 1 deletion app/src/Bridge/Laravel/Providers/RouteServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ final class RouteServiceProvider extends ServiceProvider
*
* @var string
*/
public const HOME = '/home';
public const string HOME = '/home';

/**
* Define your route model bindings, pattern filters, and other route configuration.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

final class CategoryControllerTest extends TestCase
{
private const API_BASE_PATH = '/api/admin/categories';
private const string API_BASE_PATH = '/api/admin/categories';

/**
* @test
Expand Down

0 comments on commit 12f981c

Please sign in to comment.