Skip to content

Commit 250fc14

Browse files
wip
1 parent dcb0567 commit 250fc14

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

.github/workflows/phpstan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup PHP
1919
uses: shivammathur/setup-php@v2
2020
with:
21-
php-version: '8.4'
21+
php-version: '8.2'
2222
coverage: none
2323

2424
- name: Install composer dependencies

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
fail-fast: true
2222
matrix:
2323
os: [ubuntu-latest, windows-latest]
24-
php: [8.4, 8.3]
24+
php: [8.4, 8.3, 8.2]
2525
laravel: [12.*, 11.*, 10.*]
2626
stability: [prefer-lowest, prefer-stable]
2727
include:

tests/ArchTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
22

3-
// arch('it will not use debugging functions')
4-
// ->expect(['dd', 'dump', 'ray'])
5-
// ->each->not->toBeUsed();
3+
arch('it will not use debugging functions')
4+
->expect(['dd', 'dump', 'ray'])
5+
->each->not->toBeUsed();

tests/ExampleTest.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
it('can test', function () {
66
expect(true)->toBeTrue();
77

8-
$response = get(
9-
uri: '/',
10-
// cookies: collect($cookies)
11-
// ->mapWithKeys(fn (string $c) => [
12-
// $c => fake()->word(),
13-
// ])
14-
// ->toArray(),
15-
);
8+
// $response = get(
9+
// uri: '/',
10+
// cookies: collect($cookies)
11+
// ->mapWithKeys(fn (string $c) => [
12+
// $c => fake()->word(),
13+
// ])
14+
// ->toArray(),
15+
// );
1616

1717
});

0 commit comments

Comments
 (0)