File tree Expand file tree Collapse file tree 5 files changed +12
-6
lines changed Expand file tree Collapse file tree 5 files changed +12
-6
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 29
29
"require" : {
30
30
"php" : " ^7.4|^8.0" ,
31
31
"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" ,
37
37
"phpstan/phpdoc-parser" : " ^1.26"
38
38
},
39
39
"extra" : {
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ abstract class AuthenticationMethod implements Arrayable
8
8
{
9
9
public function __construct (protected ?string $ token = null )
10
10
{
11
+ //
11
12
}
12
13
13
14
public function toArray (): array
Original file line number Diff line number Diff line change @@ -9,21 +9,26 @@ class AuditLogController extends Controller
9
9
{
10
10
public function index ()
11
11
{
12
+ //
12
13
}
13
14
14
15
public function store (Request $ request )
15
16
{
17
+ //
16
18
}
17
19
18
20
public function show ($ id )
19
21
{
22
+ //
20
23
}
21
24
22
25
public function update (Request $ request , ExampleModel $ auditLog )
23
26
{
27
+ //
24
28
}
25
29
26
30
public function destroy ($ id )
27
31
{
32
+ //
28
33
}
29
34
}
Original file line number Diff line number Diff line change 6
6
7
7
class ExampleModel extends Model
8
8
{
9
+ //
9
10
}
You can’t perform that action at this time.
0 commit comments