Skip to content

Commit 16c30c8

Browse files
committed
remove styleci
1 parent 14b19cf commit 16c30c8

File tree

4 files changed

+7
-1
lines changed

4 files changed

+7
-1
lines changed

.styleci.yml

-1
This file was deleted.

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)