File tree Expand file tree Collapse file tree 6 files changed +7
-3
lines changed Expand file tree Collapse file tree 6 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 25
25
26
26
- run : composer normalize
27
27
28
- - uses : stefanzweifel/git-auto-commit-action@v4
28
+ - uses : stefanzweifel/git-auto-commit-action@v5
29
29
with :
30
30
commit_message : Normalize composer.json
31
31
47
47
48
48
- run : vendor/bin/php-cs-fixer fix --using-cache=no
49
49
50
- - uses : stefanzweifel/git-auto-commit-action@v4
50
+ - uses : stefanzweifel/git-auto-commit-action@v5
51
51
with :
52
52
commit_message : Apply php-cs-fixer changes
Original file line number Diff line number Diff line change @@ -111,4 +111,5 @@ jobs:
111
111
112
112
- run : vendor/bin/phpunit --coverage-clover=.build/logs/clover.xml
113
113
114
+ # Not using v4 due to the breaking changes described in https://github.com/codecov/codecov-action/releases/tag/v4.0.0
114
115
- uses : codecov/codecov-action@v3
Original file line number Diff line number Diff line change 2
2
/.idea
3
3
/vendor
4
4
/composer.lock
5
+ /.phpunit.result.cache
Original file line number Diff line number Diff line change 19
19
"ext-calendar" : " *" ,
20
20
"illuminate/support" : " ^8.73 || ^9 || ^10 || ^11" ,
21
21
"mll-lab/str_putcsv" : " ^1" ,
22
- "nesbot/carbon" : " ^2.62.1" ,
22
+ "nesbot/carbon" : " ^2.62.1 || ^3 " ,
23
23
"ramsey/uuid" : " ^3 || ^4" ,
24
24
"thecodingmachine/safe" : " ^1 || ^2"
25
25
},
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ public function __construct(SectionedMicroplate $sectionedMicroplate)
30
30
*/
31
31
public function addWell ($ content ): void
32
32
{
33
+ // @phpstan-ignore-next-line Only recognized to be correct with larastan
33
34
if ($ this ->sectionedMicroplate ->freeWells ()->isEmpty ()) {
34
35
throw new MicroplateIsFullException ();
35
36
}
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ class Section extends AbstractSection
18
18
*/
19
19
public function addWell ($ content ): void
20
20
{
21
+ // @phpstan-ignore-next-line Only recognized to be correct with larastan
21
22
if ($ this ->sectionedMicroplate ->freeWells ()->isEmpty ()) {
22
23
throw new MicroplateIsFullException ();
23
24
}
You can’t perform that action at this time.
0 commit comments