Unverified Commit 2fb7e180 authored by Viral Solani's avatar Viral Solani Committed by GitHub

Merge pull request #111 from viralsolani/analysis-zOmkRR

Apply fixes from StyleCI
parents 3fd3f7f0 9b99db7c
......@@ -5,8 +5,8 @@ namespace Tests;
use App\Models\Access\Role\Role;
use App\Models\Access\User\User;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\Artisan;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\DB;
use Laravel\BrowserKitTesting\TestCase as BaseTestCase;
......@@ -83,7 +83,7 @@ abstract class BrowserKitTestCase extends BaseTestCase
/**
* Check if User is logged in or not.
*
* @return boolean true or false
* @return bool true or false
*/
protected function assertLoggedIn()
{
......@@ -91,9 +91,9 @@ abstract class BrowserKitTestCase extends BaseTestCase
}
/**
* Check if User is logged out or not
* Check if User is logged out or not.
*
* @return boolean true or false
* @return bool true or false
*/
protected function assertLoggedOut()
{
......
......@@ -9,5 +9,3 @@ function make($class, $attributes = [], $times = null)
{
return factory($class, $times)->make($attributes);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment