Skip to content

Commit 5997639

Browse files
authored
Merge pull request #107 from andreaselia/andreaselia-patch-1
remove laravel 6 support as the package doesn't function for laravel 6 anymore
2 parents 977c451 + 16c30c8 commit 5997639

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

.styleci.yml

-1
This file was deleted.

composer.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@
2929
"require": {
3030
"php": "^7.4|^8.0",
3131
"ext-json": "*",
32-
"illuminate/config": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
33-
"illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
34-
"illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
35-
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
36-
"illuminate/routing": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
32+
"illuminate/config": "^7.0|^8.0|^9.0|^10.0|^11.0",
33+
"illuminate/console": "^7.0|^8.0|^9.0|^10.0|^11.0",
34+
"illuminate/contracts": "^7.0|^8.0|^9.0|^10.0|^11.0",
35+
"illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0",
36+
"illuminate/routing": "^7.0|^8.0|^9.0|^10.0|^11.0",
3737
"phpstan/phpdoc-parser": "^1.26"
3838
},
3939
"extra": {

src/Authentication/AuthenticationMethod.php

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ abstract class AuthenticationMethod implements Arrayable
88
{
99
public function __construct(protected ?string $token = null)
1010
{
11+
//
1112
}
1213

1314
public function toArray(): array

tests/Fixtures/AuditLogController.php

+5
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,26 @@ class AuditLogController extends Controller
99
{
1010
public function index()
1111
{
12+
//
1213
}
1314

1415
public function store(Request $request)
1516
{
17+
//
1618
}
1719

1820
public function show($id)
1921
{
22+
//
2023
}
2124

2225
public function update(Request $request, ExampleModel $auditLog)
2326
{
27+
//
2428
}
2529

2630
public function destroy($id)
2731
{
32+
//
2833
}
2934
}

tests/Fixtures/ExampleModel.php

+1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@
66

77
class ExampleModel extends Model
88
{
9+
//
910
}

0 commit comments

Comments
 (0)