File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 43
43
run : " composer update --no-interaction --no-progress"
44
44
45
45
- name : " Remove Laravel"
46
- if : ${{ matrix.dependencies == 'highest' }}
47
46
run : " composer remove --dev laravel/framework"
48
47
49
48
- name : " Tests"
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ public function testArray(): void
60
60
public function testRequestAll (): void
61
61
{
62
62
if (class_exists (Request::class) === false ) {
63
- $ this ->markTestSkipped ('Laravel is not installed ' );
63
+ $ this ->markTestSkipped ('Laravel not installed. ' );
64
64
}
65
65
66
66
$ getValue = $ this ->factory ->requestAll (new Request ([
@@ -75,7 +75,7 @@ public function testRequestAll(): void
75
75
public function testRequestValidated (): void
76
76
{
77
77
if (class_exists (Request::class) === false ) {
78
- $ this ->markTestSkipped ('Laravel is not installed ' );
78
+ $ this ->markTestSkipped ('Laravel not installed. ' );
79
79
}
80
80
81
81
$ getValue = $ this ->factory ->request ($ this ->getFormRequest ());
@@ -87,7 +87,7 @@ public function testRequestValidated(): void
87
87
public function testRequestAllWithFormRequest (): void
88
88
{
89
89
if (class_exists (Request::class) === false ) {
90
- $ this ->markTestSkipped ('Laravel is not installed ' );
90
+ $ this ->markTestSkipped ('Laravel not installed. ' );
91
91
}
92
92
93
93
$ request = $ this ->getFormRequest ();
You can’t perform that action at this time.
0 commit comments