Skip to content

Commit

Permalink
Formatted
Browse files Browse the repository at this point in the history
  • Loading branch information
alimranahmed committed Jul 13, 2021
1 parent ac90e82 commit dda3ec8
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 5 deletions.
1 change: 0 additions & 1 deletion app/Models/Subscriber.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,4 @@ class Subscriber extends Model
use HasFactory;

protected $guarded = ['id'];

}
1 change: 0 additions & 1 deletion routes/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,3 @@
Route::get('admin/login', 'AuthController@showLoginForm')->name('login-form');
Route::post('admin/login', 'AuthController@login')->name('login');
Route::get('admin/logout', 'AuthController@logout')->name('logout');

1 change: 0 additions & 1 deletion tests/Feature/CommentTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

class CommentTest extends TestCase
{

protected $user;

protected $category;
Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/Models/ArticleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
use App\Models\Category;
use App\Models\User;
use Illuminate\Foundation\Testing\DatabaseTransactions;
use Tests\TestCase;
use function now;
use Tests\TestCase;

class ArticleTest extends TestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/Models/CommentTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
use App\Models\Comment;
use App\Models\User;
use Illuminate\Foundation\Testing\DatabaseTransactions;
use Tests\TestCase;
use function now;
use Tests\TestCase;

class CommentTest extends TestCase
{
Expand Down

0 comments on commit dda3ec8

Please sign in to comment.