We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -8,8 +8,8 @@ |
||
| 8 | 8 | |
| 9 | 9 | namespace App\Classes; |
| 10 | 10 | |
| 11 | -use Mail; |
|
| 12 | 11 | use App\Model\Account; |
| 12 | +use Mail; |
|
| 13 | 13 | |
| 14 | 14 | class Email |
| 15 | 15 | { |
@@ -134,7 +134,7 @@ |
||
| 134 | 134 | * Check the status of a loaded plugin. |
| 135 | 135 | * |
| 136 | 136 | * @param array $plugin |
| 137 | - * @param $status |
|
| 137 | + * @param boolean $status |
|
| 138 | 138 | * @return bool |
| 139 | 139 | */ |
| 140 | 140 | private function checkStatus($plugin, $status) |
@@ -9,8 +9,8 @@ |
||
| 9 | 9 | namespace App\Classes\Repositories; |
| 10 | 10 | |
| 11 | 11 | use App\Model\Activity; |
| 12 | -use Illuminate\Support\Collection; |
|
| 13 | 12 | use Illuminate\Database\Eloquent\Builder; |
| 13 | +use Illuminate\Support\Collection; |
|
| 14 | 14 | |
| 15 | 15 | /** |
| 16 | 16 | * Class ActivityRepository. |
@@ -9,8 +9,8 @@ |
||
| 9 | 9 | namespace App\Classes\Repositories; |
| 10 | 10 | |
| 11 | 11 | use App\Model\Page; |
| 12 | -use Illuminate\Support\Collection; |
|
| 13 | 12 | use Illuminate\Database\Eloquent\Builder; |
| 13 | +use Illuminate\Support\Collection; |
|
| 14 | 14 | |
| 15 | 15 | /** |
| 16 | 16 | * Class PageRepository. |
@@ -9,8 +9,8 @@ |
||
| 9 | 9 | namespace App\Classes\Repositories; |
| 10 | 10 | |
| 11 | 11 | use App\Model\Setting; |
| 12 | -use Illuminate\Support\Collection; |
|
| 13 | 12 | use Illuminate\Database\Eloquent\Builder; |
| 13 | +use Illuminate\Support\Collection; |
|
| 14 | 14 | |
| 15 | 15 | /** |
| 16 | 16 | * Class SettingsRepository. |
@@ -2,10 +2,10 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace App\Http\Controllers\Auth; |
| 4 | 4 | |
| 5 | -use App\User; |
|
| 6 | 5 | use App\Http\Controllers\Controller; |
| 7 | -use Illuminate\Support\Facades\Validator; |
|
| 6 | +use App\User; |
|
| 8 | 7 | use Illuminate\Foundation\Auth\RegistersUsers; |
| 8 | +use Illuminate\Support\Facades\Validator; |
|
| 9 | 9 | |
| 10 | 10 | class RegisterController extends Controller |
| 11 | 11 | { |
@@ -8,8 +8,8 @@ |
||
| 8 | 8 | |
| 9 | 9 | namespace App\Http\Controllers; |
| 10 | 10 | |
| 11 | -use Carbon\Carbon; |
|
| 12 | 11 | use App\Model\Account; |
| 12 | +use Carbon\Carbon; |
|
| 13 | 13 | use Illuminate\Http\Request; |
| 14 | 14 | |
| 15 | 15 | /** |
@@ -8,10 +8,10 @@ |
||
| 8 | 8 | |
| 9 | 9 | namespace App\Http\Middleware; |
| 10 | 10 | |
| 11 | -use Closure; |
|
| 11 | +use App\Classes\Interfaces\RouteableInterface; |
|
| 12 | 12 | use App\Model\Plugin; |
| 13 | +use Closure; |
|
| 13 | 14 | use Illuminate\Routing\Router; |
| 14 | -use App\Classes\Interfaces\RouteableInterface; |
|
| 15 | 15 | |
| 16 | 16 | /** |
| 17 | 17 | * Class SettingsProvider. |
@@ -2,8 +2,8 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace App\Model; |
| 4 | 4 | |
| 5 | -use Carbon\Carbon; |
|
| 6 | 5 | use App\Classes\Interfaces\AuditInterface; |
| 6 | +use Carbon\Carbon; |
|
| 7 | 7 | use OwenIt\Auditing\Models\Audit as Auditing; |
| 8 | 8 | |
| 9 | 9 | /** |