Skip to content

Commit dda3ec8

Browse files
committed
Formatted
1 parent ac90e82 commit dda3ec8

File tree

5 files changed

+2
-5
lines changed

5 files changed

+2
-5
lines changed

app/Models/Subscriber.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,4 @@ class Subscriber extends Model
1010
use HasFactory;
1111

1212
protected $guarded = ['id'];
13-
1413
}

routes/web.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,3 @@
3232
Route::get('admin/login', 'AuthController@showLoginForm')->name('login-form');
3333
Route::post('admin/login', 'AuthController@login')->name('login');
3434
Route::get('admin/logout', 'AuthController@logout')->name('logout');
35-

tests/Feature/CommentTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313

1414
class CommentTest extends TestCase
1515
{
16-
1716
protected $user;
1817

1918
protected $category;

tests/Unit/Models/ArticleTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
use App\Models\Category;
77
use App\Models\User;
88
use Illuminate\Foundation\Testing\DatabaseTransactions;
9-
use Tests\TestCase;
109
use function now;
10+
use Tests\TestCase;
1111

1212
class ArticleTest extends TestCase
1313
{

tests/Unit/Models/CommentTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
use App\Models\Comment;
88
use App\Models\User;
99
use Illuminate\Foundation\Testing\DatabaseTransactions;
10-
use Tests\TestCase;
1110
use function now;
11+
use Tests\TestCase;
1212

1313
class CommentTest extends TestCase
1414
{

0 commit comments

Comments
 (0)