Completed
Push — master ( 8023d3...8b2ccd )
by Sherif
10:04
created
src/Modules/Reporting/Http/Resources/View.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -6,14 +6,14 @@
 block discarded – undo
6 6
 
7 7
 class View extends JsonResource
8 8
 {
9
-    /**
10
-     * Transform the resource into an array.
11
-     *
12
-     * @param Request $request
13
-     * @return array
14
-     */
15
-    public function toArray($request)
16
-    {
17
-        return [$this->resource];
18
-    }
9
+	/**
10
+	 * Transform the resource into an array.
11
+	 *
12
+	 * @param Request $request
13
+	 * @return array
14
+	 */
15
+	public function toArray($request)
16
+	{
17
+		return [$this->resource];
18
+	}
19 19
 }
Please login to merge, or discard this patch.
src/Modules/Reporting/Http/Controllers/ReportController.php 1 patch
Indentation   +33 added lines, -33 removed lines patch added patch discarded remove patch
@@ -9,40 +9,40 @@
 block discarded – undo
9 9
 
10 10
 class ReportController extends BaseApiController
11 11
 {
12
-    /**
13
-     * Path of the model resource
14
-     *
15
-     * @var string
16
-     */
17
-    protected $modelResource = 'App\Modules\Reporting\Http\Resources\Report';
12
+	/**
13
+	 * Path of the model resource
14
+	 *
15
+	 * @var string
16
+	 */
17
+	protected $modelResource = 'App\Modules\Reporting\Http\Resources\Report';
18 18
 
19
-    /**
20
-     * List of all route actions that the base api controller
21
-     * will skip permissions check for them.
22
-     * @var array
23
-     */
24
-    protected $skipPermissionCheck = ['getReport'];
19
+	/**
20
+	 * List of all route actions that the base api controller
21
+	 * will skip permissions check for them.
22
+	 * @var array
23
+	 */
24
+	protected $skipPermissionCheck = ['getReport'];
25 25
 
26
-    /**
27
-     * Init new object.
28
-     *
29
-     * @param   ReportService $service
30
-     * @return  void
31
-     */
32
-    public function __construct(ReportService $service)
33
-    {
34
-        parent::__construct($service);
35
-    }
26
+	/**
27
+	 * Init new object.
28
+	 *
29
+	 * @param   ReportService $service
30
+	 * @return  void
31
+	 */
32
+	public function __construct(ReportService $service)
33
+	{
34
+		parent::__construct($service);
35
+	}
36 36
 
37
-    /**
38
-     * Render the given servicert name with the given conditions.
39
-     *
40
-     * @param Request $request
41
-     * @param  string $reportName Name of the requested servicert
42
-     * @return \Illuminate\Http\Response
43
-     */
44
-    public function getReport(Request $request, $reportName)
45
-    {
46
-        return new ViewResource($this->service->getReport($reportName, $request->all(), $request->query('perPage')));
47
-    }
37
+	/**
38
+	 * Render the given servicert name with the given conditions.
39
+	 *
40
+	 * @param Request $request
41
+	 * @param  string $reportName Name of the requested servicert
42
+	 * @return \Illuminate\Http\Response
43
+	 */
44
+	public function getReport(Request $request, $reportName)
45
+	{
46
+		return new ViewResource($this->service->getReport($reportName, $request->all(), $request->query('perPage')));
47
+	}
48 48
 }
Please login to merge, or discard this patch.
files/BroadcastServiceProvider.php 2 patches
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace App\Providers;
4 4
 
5
-use Illuminate\Support\ServiceProvider;
5
+use Illuminate\Support\ServiceProvider;
6 6
 use Illuminate\Support\Facades\Broadcast;
7 7
 
8 8
 class BroadcastServiceProvider extends ServiceProvider
Please login to merge, or discard this patch.
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -7,15 +7,15 @@
 block discarded – undo
7 7
 
8 8
 class BroadcastServiceProvider extends ServiceProvider
9 9
 {
10
-    /**
11
-     * Bootstrap any application services.
12
-     *
13
-     * @return void
14
-     */
15
-    public function boot()
16
-    {
17
-        Broadcast::routes(['middleware' => ['auth:api']]);
10
+	/**
11
+	 * Bootstrap any application services.
12
+	 *
13
+	 * @return void
14
+	 */
15
+	public function boot()
16
+	{
17
+		Broadcast::routes(['middleware' => ['auth:api']]);
18 18
 
19
-        require base_path('routes/channels.php');
20
-    }
19
+		require base_path('routes/channels.php');
20
+	}
21 21
 }
Please login to merge, or discard this patch.
files/Handler.php 3 patches
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace App\Exceptions;
4 4
 
5
-use Exception;
5
+use Exception;
6 6
 use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
7 7
 
8 8
 class Handler extends ExceptionHandler
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
                 return \Response::json(['errors' => [$errors]], $exception->getStatusCode());
64 64
             } elseif ($exception instanceof \Illuminate\Validation\ValidationException) {
65 65
                 return \Response::json(['errors' => $exception->errors()], 422);
66
-            } elseif (! $exception instanceof \Symfony\Component\ErrorHandler\Error\FatalError) {
66
+            } elseif ( ! $exception instanceof \Symfony\Component\ErrorHandler\Error\FatalError) {
67 67
                 return parent::render($request, $exception);
68 68
             }
69 69
         }
Please login to merge, or discard this patch.
Indentation   +59 added lines, -59 removed lines patch added patch discarded remove patch
@@ -7,67 +7,67 @@
 block discarded – undo
7 7
 
8 8
 class Handler extends ExceptionHandler
9 9
 {
10
-    /**
11
-     * A list of the exception types that are not reported.
12
-     *
13
-     * @var array
14
-     */
15
-    protected $dontReport = [
16
-        \League\OAuth2\Server\Exception\OAuthServerException::class,
17
-    ];
10
+	/**
11
+	 * A list of the exception types that are not reported.
12
+	 *
13
+	 * @var array
14
+	 */
15
+	protected $dontReport = [
16
+		\League\OAuth2\Server\Exception\OAuthServerException::class,
17
+	];
18 18
 
19
-    /**
20
-     * A list of the inputs that are never flashed for validation exceptions.
21
-     *
22
-     * @var array
23
-     */
24
-    protected $dontFlash = [
25
-        'password',
26
-        'password_confirmation',
27
-    ];
19
+	/**
20
+	 * A list of the inputs that are never flashed for validation exceptions.
21
+	 *
22
+	 * @var array
23
+	 */
24
+	protected $dontFlash = [
25
+		'password',
26
+		'password_confirmation',
27
+	];
28 28
 
29
-    /**
30
-     * Report or log an exception.
31
-     *
32
-     * This is a great spot to send exceptions to Sentry, Bugsnag, etc.
33
-     *
34
-     * @param  \Exception  $exception
35
-     * @return void
36
-     */
37
-    public function report(Exception $exception)
38
-    {
39
-        parent::report($exception);
40
-    }
29
+	/**
30
+	 * Report or log an exception.
31
+	 *
32
+	 * This is a great spot to send exceptions to Sentry, Bugsnag, etc.
33
+	 *
34
+	 * @param  \Exception  $exception
35
+	 * @return void
36
+	 */
37
+	public function report(Exception $exception)
38
+	{
39
+		parent::report($exception);
40
+	}
41 41
 
42
-    /**
43
-     * Render an exception into an HTTP response.
44
-     *
45
-     * @param  \Illuminate\Http\Request  $request
46
-     * @param  \Exception  $exception
47
-     * @return \Illuminate\Http\Response
48
-     */
49
-    public function render($request, Exception $exception)
50
-    {
51
-        if ($request->wantsJson()) {
52
-            if ($exception instanceof \Illuminate\Auth\AuthenticationException) {
53
-                \Errors::unAuthorized();
54
-            }
55
-            if ($exception instanceof \Illuminate\Database\QueryException) {
56
-                \Errors::dbQueryError();
57
-            } elseif ($exception instanceof \predis\connection\connectionexception) {
58
-                \Errors::redisNotRunning();
59
-            } elseif ($exception instanceof \GuzzleHttp\Exception\ClientException) {
60
-                \Errors::connectionError();
61
-            } elseif ($exception instanceof \Symfony\Component\HttpKernel\Exception\HttpException) {
62
-                $errors = $exception->getStatusCode() === 404 ? 'not found' : $exception->getMessage();
63
-                return \Response::json(['errors' => [$errors]], $exception->getStatusCode());
64
-            } elseif ($exception instanceof \Illuminate\Validation\ValidationException) {
65
-                return \Response::json(['errors' => $exception->errors()], 422);
66
-            } elseif (! $exception instanceof \Symfony\Component\ErrorHandler\Error\FatalError) {
67
-                return parent::render($request, $exception);
68
-            }
69
-        }
42
+	/**
43
+	 * Render an exception into an HTTP response.
44
+	 *
45
+	 * @param  \Illuminate\Http\Request  $request
46
+	 * @param  \Exception  $exception
47
+	 * @return \Illuminate\Http\Response
48
+	 */
49
+	public function render($request, Exception $exception)
50
+	{
51
+		if ($request->wantsJson()) {
52
+			if ($exception instanceof \Illuminate\Auth\AuthenticationException) {
53
+				\Errors::unAuthorized();
54
+			}
55
+			if ($exception instanceof \Illuminate\Database\QueryException) {
56
+				\Errors::dbQueryError();
57
+			} elseif ($exception instanceof \predis\connection\connectionexception) {
58
+				\Errors::redisNotRunning();
59
+			} elseif ($exception instanceof \GuzzleHttp\Exception\ClientException) {
60
+				\Errors::connectionError();
61
+			} elseif ($exception instanceof \Symfony\Component\HttpKernel\Exception\HttpException) {
62
+				$errors = $exception->getStatusCode() === 404 ? 'not found' : $exception->getMessage();
63
+				return \Response::json(['errors' => [$errors]], $exception->getStatusCode());
64
+			} elseif ($exception instanceof \Illuminate\Validation\ValidationException) {
65
+				return \Response::json(['errors' => $exception->errors()], 422);
66
+			} elseif (! $exception instanceof \Symfony\Component\ErrorHandler\Error\FatalError) {
67
+				return parent::render($request, $exception);
68
+			}
69
+		}
70 70
         
71
-        return parent::render($request, $exception);
72
-    }
71
+		return parent::render($request, $exception);
72
+	}
73 73
 }
Please login to merge, or discard this patch.
Core/Console/Commands/Stubs/Module/Http/Controllers/DummyController.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use App\Modules\Core\BaseClasses\BaseApiController;
6 6
 use App\Modules\DummyModule\Services\DummyService;
7
-use App\Modules\Core\Utl\CoreConfig;
8 7
 use App\Modules\DummyModule\Http\Requests\InsertDummy;
9 8
 use App\Modules\DummyModule\Http\Requests\UpdateDummy;
10 9
 
Please login to merge, or discard this patch.
Indentation   +48 added lines, -48 removed lines patch added patch discarded remove patch
@@ -10,57 +10,57 @@
 block discarded – undo
10 10
 
11 11
 class DummyController extends BaseApiController
12 12
 {
13
-    /**
14
-     * Path of the model resource
15
-     *
16
-     * @var string
17
-     */
18
-    protected $modelResource = 'App\Modules\DummyModule\Http\Resources\DummyModel';
13
+	/**
14
+	 * Path of the model resource
15
+	 *
16
+	 * @var string
17
+	 */
18
+	protected $modelResource = 'App\Modules\DummyModule\Http\Resources\DummyModel';
19 19
 
20
-    /**
21
-     * List of all route actions that the base api controller
22
-     * will skip permissions check for them.
23
-     * @var array
24
-     */
25
-    protected $skipPermissionCheck = [];
20
+	/**
21
+	 * List of all route actions that the base api controller
22
+	 * will skip permissions check for them.
23
+	 * @var array
24
+	 */
25
+	protected $skipPermissionCheck = [];
26 26
 
27
-    /**
28
-     * List of all route actions that the base api controller
29
-     * will skip login check for them.
30
-     * @var array
31
-     */
32
-    protected $skipLoginCheck = [];
27
+	/**
28
+	 * List of all route actions that the base api controller
29
+	 * will skip login check for them.
30
+	 * @var array
31
+	 */
32
+	protected $skipLoginCheck = [];
33 33
 
34
-    /**
35
-     * Init new object.
36
-     *
37
-     * @param   DummyService $service
38
-     * @return  void
39
-     */
40
-    public function __construct(DummyService $service)
41
-    {
42
-        parent::__construct($service);
43
-    }
34
+	/**
35
+	 * Init new object.
36
+	 *
37
+	 * @param   DummyService $service
38
+	 * @return  void
39
+	 */
40
+	public function __construct(DummyService $service)
41
+	{
42
+		parent::__construct($service);
43
+	}
44 44
 
45
-    /**
46
-     * Insert the given model to storage.
47
-     *
48
-     * @param InsertDummy $request
49
-     * @return \Illuminate\Http\Response
50
-     */
51
-    public function insert(InsertDummy $request)
52
-    {
53
-        return new $this->modelResource($this->service->save($request->all()));
54
-    }
45
+	/**
46
+	 * Insert the given model to storage.
47
+	 *
48
+	 * @param InsertDummy $request
49
+	 * @return \Illuminate\Http\Response
50
+	 */
51
+	public function insert(InsertDummy $request)
52
+	{
53
+		return new $this->modelResource($this->service->save($request->all()));
54
+	}
55 55
 
56
-    /**
57
-     * Update the given model to storage.
58
-     *
59
-     * @param UpdateDummy $request
60
-     * @return \Illuminate\Http\Response
61
-     */
62
-    public function update(UpdateDummy $request)
63
-    {
64
-        return new $this->modelResource($this->service->save($request->all()));
65
-    }
56
+	/**
57
+	 * Update the given model to storage.
58
+	 *
59
+	 * @param UpdateDummy $request
60
+	 * @return \Illuminate\Http\Response
61
+	 */
62
+	public function update(UpdateDummy $request)
63
+	{
64
+		return new $this->modelResource($this->service->save($request->all()));
65
+	}
66 66
 }
Please login to merge, or discard this patch.
src/Modules/Core/Http/Middleware/UpdateLocaleAndTimezone.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,6 @@
 block discarded – undo
16 16
      *
17 17
      * @param   Session      $session
18 18
      * @param   Auth         $auth
19
-     * @param   Errors       $errors
20 19
      *
21 20
      * @return  void
22 21
      */
Please login to merge, or discard this patch.
Indentation   +44 added lines, -44 removed lines patch added patch discarded remove patch
@@ -8,53 +8,53 @@
 block discarded – undo
8 8
 
9 9
 class UpdateLocaleAndTimezone
10 10
 {
11
-    protected $session;
12
-    protected $auth;
11
+	protected $session;
12
+	protected $auth;
13 13
     
14
-    /**
15
-     * Init new object.
16
-     *
17
-     * @param   Session      $session
18
-     * @param   Auth         $auth
19
-     * @param   Errors       $errors
20
-     *
21
-     * @return  void
22
-     */
23
-    public function __construct(Session $session, Auth $auth)
24
-    {
25
-        $this->session = $session;
26
-        $this->auth = $auth;
27
-    }
14
+	/**
15
+	 * Init new object.
16
+	 *
17
+	 * @param   Session      $session
18
+	 * @param   Auth         $auth
19
+	 * @param   Errors       $errors
20
+	 *
21
+	 * @return  void
22
+	 */
23
+	public function __construct(Session $session, Auth $auth)
24
+	{
25
+		$this->session = $session;
26
+		$this->auth = $auth;
27
+	}
28 28
 
29
-    /**
30
-     * Handle an incoming request.
31
-     *
32
-     * @param  \Illuminate\Http\Request  $request
33
-     * @param  \Closure  $next
34
-     * @return mixed
35
-     */
36
-    public function handle($request, Closure $next)
37
-    {
38
-        $update = false;
39
-        $user   = $this->auth->user();
40
-        if ($user) {
41
-            $locale   = $this->session->get('locale');
42
-            $timezone = $this->session->get('time-zone');
43
-            if ($locale && $locale !== 'all' && $locale !== $user->locale) {
44
-                $user->locale = $locale;
45
-                $update       = true;
46
-            }
29
+	/**
30
+	 * Handle an incoming request.
31
+	 *
32
+	 * @param  \Illuminate\Http\Request  $request
33
+	 * @param  \Closure  $next
34
+	 * @return mixed
35
+	 */
36
+	public function handle($request, Closure $next)
37
+	{
38
+		$update = false;
39
+		$user   = $this->auth->user();
40
+		if ($user) {
41
+			$locale   = $this->session->get('locale');
42
+			$timezone = $this->session->get('time-zone');
43
+			if ($locale && $locale !== 'all' && $locale !== $user->locale) {
44
+				$user->locale = $locale;
45
+				$update       = true;
46
+			}
47 47
     
48
-            if ($timezone && $timezone !== $user->timezone) {
49
-                $user->timezone = $timezone;
50
-                $update         = true;
51
-            }
48
+			if ($timezone && $timezone !== $user->timezone) {
49
+				$user->timezone = $timezone;
50
+				$update         = true;
51
+			}
52 52
     
53
-            if ($update) {
54
-                $user->save();
55
-            }
56
-        }
53
+			if ($update) {
54
+				$user->save();
55
+			}
56
+		}
57 57
 
58
-        return $next($request);
59
-    }
58
+		return $next($request);
59
+	}
60 60
 }
Please login to merge, or discard this patch.
files/Kernel.php 1 patch
Indentation   +31 added lines, -31 removed lines patch added patch discarded remove patch
@@ -10,38 +10,38 @@
 block discarded – undo
10 10
 
11 11
 class Kernel extends ConsoleKernel
12 12
 {
13
-    /**
14
-     * The Artisan commands provided by your application.
15
-     *
16
-     * @var array
17
-     */
18
-    protected $commands = [
19
-        GenerateDoc::class,
20
-        MakeNotificationsCommand::class,
21
-        MakeModuleCommand::class
22
-    ];
13
+	/**
14
+	 * The Artisan commands provided by your application.
15
+	 *
16
+	 * @var array
17
+	 */
18
+	protected $commands = [
19
+		GenerateDoc::class,
20
+		MakeNotificationsCommand::class,
21
+		MakeModuleCommand::class
22
+	];
23 23
 
24
-    /**
25
-     * Define the application's command schedule.
26
-     *
27
-     * @param  \Illuminate\Console\Scheduling\Schedule  $schedule
28
-     * @return void
29
-     */
30
-    protected function schedule(Schedule $schedule)
31
-    {
32
-        // $schedule->command('inspire')
33
-        //          ->hourly();
34
-    }
24
+	/**
25
+	 * Define the application's command schedule.
26
+	 *
27
+	 * @param  \Illuminate\Console\Scheduling\Schedule  $schedule
28
+	 * @return void
29
+	 */
30
+	protected function schedule(Schedule $schedule)
31
+	{
32
+		// $schedule->command('inspire')
33
+		//          ->hourly();
34
+	}
35 35
 
36
-    /**
37
-     * Register the commands for the application.
38
-     *
39
-     * @return void
40
-     */
41
-    protected function commands()
42
-    {
43
-        $this->load(__DIR__.'/Commands');
36
+	/**
37
+	 * Register the commands for the application.
38
+	 *
39
+	 * @return void
40
+	 */
41
+	protected function commands()
42
+	{
43
+		$this->load(__DIR__.'/Commands');
44 44
 
45
-        require base_path('routes/console.php');
46
-    }
45
+		require base_path('routes/console.php');
46
+	}
47 47
 }
Please login to merge, or discard this patch.
files/HttpKernel.php 1 patch
Indentation   +73 added lines, -73 removed lines patch added patch discarded remove patch
@@ -6,81 +6,81 @@
 block discarded – undo
6 6
 
7 7
 class Kernel extends HttpKernel
8 8
 {
9
-    /**
10
-     * The application's global HTTP middleware stack.
11
-     *
12
-     * These middleware are run during every request to your application.
13
-     *
14
-     * @var array
15
-     */
16
-    protected $middleware = [
17
-        \App\Http\Middleware\TrustProxies::class,
18
-        \App\Http\Middleware\CheckForMaintenanceMode::class,
19
-        \Illuminate\Foundation\Http\Middleware\ValidatePostSize::class,
20
-        \App\Http\Middleware\TrimStrings::class,
21
-        \Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull::class,
22
-    ];
9
+	/**
10
+	 * The application's global HTTP middleware stack.
11
+	 *
12
+	 * These middleware are run during every request to your application.
13
+	 *
14
+	 * @var array
15
+	 */
16
+	protected $middleware = [
17
+		\App\Http\Middleware\TrustProxies::class,
18
+		\App\Http\Middleware\CheckForMaintenanceMode::class,
19
+		\Illuminate\Foundation\Http\Middleware\ValidatePostSize::class,
20
+		\App\Http\Middleware\TrimStrings::class,
21
+		\Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull::class,
22
+	];
23 23
 
24
-    /**
25
-     * The application's route middleware groups.
26
-     *
27
-     * @var array
28
-     */
29
-    protected $middlewareGroups = [
30
-        'web' => [
31
-            \App\Http\Middleware\EncryptCookies::class,
32
-            \Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class,
33
-            \Illuminate\Session\Middleware\StartSession::class,
34
-            // \Illuminate\Session\Middleware\AuthenticateSession::class,
35
-            \Illuminate\View\Middleware\ShareErrorsFromSession::class,
36
-            \App\Http\Middleware\VerifyCsrfToken::class,
37
-            \Illuminate\Routing\Middleware\SubstituteBindings::class,
38
-        ],
24
+	/**
25
+	 * The application's route middleware groups.
26
+	 *
27
+	 * @var array
28
+	 */
29
+	protected $middlewareGroups = [
30
+		'web' => [
31
+			\App\Http\Middleware\EncryptCookies::class,
32
+			\Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class,
33
+			\Illuminate\Session\Middleware\StartSession::class,
34
+			// \Illuminate\Session\Middleware\AuthenticateSession::class,
35
+			\Illuminate\View\Middleware\ShareErrorsFromSession::class,
36
+			\App\Http\Middleware\VerifyCsrfToken::class,
37
+			\Illuminate\Routing\Middleware\SubstituteBindings::class,
38
+		],
39 39
 
40
-        'api' => [
41
-            'throttle:60,1',
42
-            \Illuminate\Routing\Middleware\SubstituteBindings::class,
43
-            \App\Modules\Core\Http\Middleware\SetSessions::class,
44
-            \App\Modules\Core\Http\Middleware\CheckPermissions::class,
45
-            \App\Modules\Core\Http\Middleware\UpdateLocaleAndTimezone::class,
46
-            \App\Modules\Core\Http\Middleware\SetRelations::class,
47
-        ],
48
-    ];
40
+		'api' => [
41
+			'throttle:60,1',
42
+			\Illuminate\Routing\Middleware\SubstituteBindings::class,
43
+			\App\Modules\Core\Http\Middleware\SetSessions::class,
44
+			\App\Modules\Core\Http\Middleware\CheckPermissions::class,
45
+			\App\Modules\Core\Http\Middleware\UpdateLocaleAndTimezone::class,
46
+			\App\Modules\Core\Http\Middleware\SetRelations::class,
47
+		],
48
+	];
49 49
 
50
-    /**
51
-     * The application's route middleware.
52
-     *
53
-     * These middleware may be assigned to groups or used individually.
54
-     *
55
-     * @var array
56
-     */
57
-    protected $routeMiddleware = [
58
-        'auth' => \App\Http\Middleware\Authenticate::class,
59
-        'auth.basic' => \Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class,
60
-        'bindings' => \Illuminate\Routing\Middleware\SubstituteBindings::class,
61
-        'cache.headers' => \Illuminate\Http\Middleware\SetCacheHeaders::class,
62
-        'can' => \Illuminate\Auth\Middleware\Authorize::class,
63
-        'guest' => \App\Http\Middleware\RedirectIfAuthenticated::class,
64
-        'password.confirm' => \Illuminate\Auth\Middleware\RequirePassword::class,
65
-        'signed' => \Illuminate\Routing\Middleware\ValidateSignature::class,
66
-        'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class,
67
-        'verified' => \Illuminate\Auth\Middleware\EnsureEmailIsVerified::class,
68
-    ];
50
+	/**
51
+	 * The application's route middleware.
52
+	 *
53
+	 * These middleware may be assigned to groups or used individually.
54
+	 *
55
+	 * @var array
56
+	 */
57
+	protected $routeMiddleware = [
58
+		'auth' => \App\Http\Middleware\Authenticate::class,
59
+		'auth.basic' => \Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class,
60
+		'bindings' => \Illuminate\Routing\Middleware\SubstituteBindings::class,
61
+		'cache.headers' => \Illuminate\Http\Middleware\SetCacheHeaders::class,
62
+		'can' => \Illuminate\Auth\Middleware\Authorize::class,
63
+		'guest' => \App\Http\Middleware\RedirectIfAuthenticated::class,
64
+		'password.confirm' => \Illuminate\Auth\Middleware\RequirePassword::class,
65
+		'signed' => \Illuminate\Routing\Middleware\ValidateSignature::class,
66
+		'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class,
67
+		'verified' => \Illuminate\Auth\Middleware\EnsureEmailIsVerified::class,
68
+	];
69 69
 
70
-    /**
71
-     * The priority-sorted list of middleware.
72
-     *
73
-     * This forces non-global middleware to always be in the given order.
74
-     *
75
-     * @var array
76
-     */
77
-    protected $middlewarePriority = [
78
-        \Illuminate\Session\Middleware\StartSession::class,
79
-        \Illuminate\View\Middleware\ShareErrorsFromSession::class,
80
-        \App\Http\Middleware\Authenticate::class,
81
-        \Illuminate\Routing\Middleware\ThrottleRequests::class,
82
-        \Illuminate\Session\Middleware\AuthenticateSession::class,
83
-        \Illuminate\Routing\Middleware\SubstituteBindings::class,
84
-        \Illuminate\Auth\Middleware\Authorize::class,
85
-    ];
70
+	/**
71
+	 * The priority-sorted list of middleware.
72
+	 *
73
+	 * This forces non-global middleware to always be in the given order.
74
+	 *
75
+	 * @var array
76
+	 */
77
+	protected $middlewarePriority = [
78
+		\Illuminate\Session\Middleware\StartSession::class,
79
+		\Illuminate\View\Middleware\ShareErrorsFromSession::class,
80
+		\App\Http\Middleware\Authenticate::class,
81
+		\Illuminate\Routing\Middleware\ThrottleRequests::class,
82
+		\Illuminate\Session\Middleware\AuthenticateSession::class,
83
+		\Illuminate\Routing\Middleware\SubstituteBindings::class,
84
+		\Illuminate\Auth\Middleware\Authorize::class,
85
+	];
86 86
 }
Please login to merge, or discard this patch.
files/channels.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,5 +12,5 @@
 block discarded – undo
12 12
 */
13 13
 
14 14
 Broadcast::channel('users.{id}', function ($user, $id) {
15
-    return (int) $user->id === (int) $id;
15
+	return (int) $user->id === (int) $id;
16 16
 });
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,6 +11,6 @@
 block discarded – undo
11 11
 |
12 12
 */
13 13
 
14
-Broadcast::channel('users.{id}', function ($user, $id) {
14
+Broadcast::channel('users.{id}', function($user, $id) {
15 15
     return (int) $user->id === (int) $id;
16 16
 });
Please login to merge, or discard this patch.