@@ -58,21 +58,21 @@ discard block |
||
58 | 58 | * @param \Exception $exception |
59 | 59 | * @return void |
60 | 60 | */ |
61 | - public function report(Exception $exception) |
|
61 | + public function report (Exception $exception) |
|
62 | 62 | { |
63 | 63 | if ($exception instanceof TokenMismatchException) { |
64 | 64 | $logData = [ |
65 | - 'requestToken' => request()->header('x-csrf-token'), |
|
66 | - 'sessionToken' => session()->token(), |
|
67 | - 'session' => session()->all(), |
|
68 | - 'user' => request()->user(), |
|
69 | - 'requestUrl' => request()->url() |
|
65 | + 'requestToken' => request ()->header ('x-csrf-token'), |
|
66 | + 'sessionToken' => session ()->token (), |
|
67 | + 'session' => session ()->all (), |
|
68 | + 'user' => request ()->user (), |
|
69 | + 'requestUrl' => request ()->url () |
|
70 | 70 | ]; |
71 | - $message = '419 CSRF Token Mismatch. ' . collect($logData)->toJson(); |
|
72 | - Log::debug($message); |
|
71 | + $message = '419 CSRF Token Mismatch. '.collect ($logData)->toJson (); |
|
72 | + Log::debug ($message); |
|
73 | 73 | } |
74 | 74 | |
75 | - parent::report($exception); |
|
75 | + parent::report ($exception); |
|
76 | 76 | } |
77 | 77 | |
78 | 78 | /** |
@@ -81,15 +81,15 @@ discard block |
||
81 | 81 | * |
82 | 82 | * @return array |
83 | 83 | */ |
84 | - protected function context() |
|
84 | + protected function context () |
|
85 | 85 | { |
86 | 86 | try { |
87 | - return array_filter([ |
|
88 | - 'userId' => Auth::id(), |
|
87 | + return array_filter ([ |
|
88 | + 'userId' => Auth::id (), |
|
89 | 89 | // 'email' => optional(Auth::user())->email, |
90 | - 'url' => Request::path(), |
|
91 | - 'method' => Request::method(), |
|
92 | - 'referer' => Request::header('referer', '') |
|
90 | + 'url' => Request::path (), |
|
91 | + 'method' => Request::method (), |
|
92 | + 'referer' => Request::header ('referer', '') |
|
93 | 93 | ]); |
94 | 94 | } catch (Throwable $e) { |
95 | 95 | return []; |
@@ -103,17 +103,17 @@ discard block |
||
103 | 103 | * @param \Exception $exception |
104 | 104 | * @return \Illuminate\Http\Response |
105 | 105 | */ |
106 | - public function render($request, Exception $exception) |
|
106 | + public function render ($request, Exception $exception) |
|
107 | 107 | { |
108 | 108 | if ($exception instanceof AdminException) { |
109 | - return $exception->render($request); |
|
109 | + return $exception->render ($request); |
|
110 | 110 | } |
111 | 111 | if ($exception instanceof TokenMismatchException) { |
112 | - $newMessage = $exception->getMessage() . ' ' . Lang::get('errors.refresh_page'); |
|
113 | - $modifiedException = new TokenMismatchException($newMessage, $exception->getCode(), $exception); |
|
114 | - return parent::render($request, $modifiedException); |
|
112 | + $newMessage = $exception->getMessage ().' '.Lang::get ('errors.refresh_page'); |
|
113 | + $modifiedException = new TokenMismatchException ($newMessage, $exception->getCode (), $exception); |
|
114 | + return parent::render ($request, $modifiedException); |
|
115 | 115 | } |
116 | - return parent::render($request, $exception); |
|
116 | + return parent::render ($request, $exception); |
|
117 | 117 | } |
118 | 118 | |
119 | 119 | /** |
@@ -123,17 +123,17 @@ discard block |
||
123 | 123 | * @param \Illuminate\Auth\AuthenticationException $exception |
124 | 124 | * @return \Illuminate\Http\Response |
125 | 125 | */ |
126 | - protected function unauthenticated($request, AuthenticationException $exception) |
|
126 | + protected function unauthenticated ($request, AuthenticationException $exception) |
|
127 | 127 | { |
128 | - if ($request->expectsJson()) { |
|
129 | - return response()->json(['error' => 'Unauthenticated.'], 401); |
|
128 | + if ($request->expectsJson ()) { |
|
129 | + return response ()->json (['error' => 'Unauthenticated.'], 401); |
|
130 | 130 | } |
131 | - if (WhichPortal::isManagerPortal()) { |
|
132 | - $loginRoute = route('manager.login'); |
|
131 | + if (WhichPortal::isManagerPortal ()) { |
|
132 | + $loginRoute = route ('manager.login'); |
|
133 | 133 | } else { |
134 | - $loginRoute = route('login'); |
|
134 | + $loginRoute = route ('login'); |
|
135 | 135 | } |
136 | - return redirect()->guest($loginRoute); |
|
136 | + return redirect ()->guest ($loginRoute); |
|
137 | 137 | } |
138 | 138 | |
139 | 139 | /** |
@@ -143,18 +143,18 @@ discard block |
||
143 | 143 | * @param \Symfony\Component\HttpKernel\Exception\HttpExceptionInterface $e |
144 | 144 | * @return \Symfony\Component\HttpFoundation\Response |
145 | 145 | */ |
146 | - protected function renderHttpException(HttpExceptionInterface $e) |
|
146 | + protected function renderHttpException (HttpExceptionInterface $e) |
|
147 | 147 | { |
148 | - if (!view()->exists("errors.{$e->getStatusCode()}")) { |
|
149 | - return response()->view('errors.default', [ |
|
148 | + if (!view ()->exists ("errors.{$e->getStatusCode ()}")) { |
|
149 | + return response ()->view ('errors.default', [ |
|
150 | 150 | 'exception' => $e, |
151 | - 'goc' => Lang::get('common/goc'), |
|
152 | - 'alert' => Lang::get('common/alert'), |
|
151 | + 'goc' => Lang::get ('common/goc'), |
|
152 | + 'alert' => Lang::get ('common/alert'), |
|
153 | 153 | 'error' => [ |
154 | 154 | 'title' => 'Error' |
155 | 155 | ] |
156 | - ], $e->getStatusCode(), $e->getHeaders()); |
|
156 | + ], $e->getStatusCode (), $e->getHeaders ()); |
|
157 | 157 | } |
158 | - return parent::renderHttpException($e); |
|
158 | + return parent::renderHttpException ($e); |
|
159 | 159 | } |
160 | 160 | } |
@@ -22,10 +22,10 @@ discard block |
||
22 | 22 | * |
23 | 23 | * @return void |
24 | 24 | */ |
25 | - public function __construct(string $message, int $code, ?\Throwable $previous = null, array $links = null) |
|
25 | + public function __construct (string $message, int $code, ?\Throwable $previous = null, array $links = null) |
|
26 | 26 | { |
27 | 27 | $this->links = $links; |
28 | - parent::__construct($message, $code, $previous); |
|
28 | + parent::__construct ($message, $code, $previous); |
|
29 | 29 | } |
30 | 30 | |
31 | 31 | /** |
@@ -34,9 +34,9 @@ discard block |
||
34 | 34 | * @param \Illuminate\Http\Request $request Incoming request object. |
35 | 35 | * @return \Illuminate\Http\Response|\Illuminate\Contracts\Routing\ResponseFactory |
36 | 36 | */ |
37 | - public function render(\Illuminate\Http\Request $request) |
|
37 | + public function render (\Illuminate\Http\Request $request) |
|
38 | 38 | { |
39 | - return response()->view( |
|
39 | + return response ()->view ( |
|
40 | 40 | 'errors/admin', |
41 | 41 | [ |
42 | 42 | 'exception' => $this, |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | * |
55 | 55 | * @return mixed |
56 | 56 | */ |
57 | - public function getStatusCode() |
|
57 | + public function getStatusCode () |
|
58 | 58 | { |
59 | 59 | return 500; |
60 | 60 | } |
@@ -12,10 +12,10 @@ |
||
12 | 12 | * |
13 | 13 | * @return void |
14 | 14 | */ |
15 | - public function boot() |
|
15 | + public function boot () |
|
16 | 16 | { |
17 | - Broadcast::routes(); |
|
17 | + Broadcast::routes (); |
|
18 | 18 | |
19 | - require base_path('routes/channels.php'); |
|
19 | + require base_path ('routes/channels.php'); |
|
20 | 20 | } |
21 | 21 | } |
@@ -63,15 +63,15 @@ discard block |
||
63 | 63 | * |
64 | 64 | * @return void |
65 | 65 | */ |
66 | - protected function defineGates(): void |
|
66 | + protected function defineGates (): void |
|
67 | 67 | { |
68 | - Gate::define('view-assessment-plan', function ($user, $jobPoster) { |
|
69 | - return $user->isAdmin() || |
|
70 | - $user->isManager() && $jobPoster->manager->user_id === $user->id; |
|
68 | + Gate::define ('view-assessment-plan', function ($user, $jobPoster) { |
|
69 | + return $user->isAdmin () || |
|
70 | + $user->isManager () && $jobPoster->manager->user_id === $user->id; |
|
71 | 71 | }); |
72 | 72 | } |
73 | 73 | |
74 | - public function register(): void |
|
74 | + public function register (): void |
|
75 | 75 | { |
76 | 76 | } |
77 | 77 | |
@@ -80,10 +80,10 @@ discard block |
||
80 | 80 | * |
81 | 81 | * @return void |
82 | 82 | */ |
83 | - public function boot(): void |
|
83 | + public function boot (): void |
|
84 | 84 | { |
85 | - $this->registerPolicies(); |
|
85 | + $this->registerPolicies (); |
|
86 | 86 | |
87 | - $this->defineGates(); |
|
87 | + $this->defineGates (); |
|
88 | 88 | } |
89 | 89 | } |
@@ -19,21 +19,21 @@ |
||
19 | 19 | * |
20 | 20 | * @return boolean |
21 | 21 | */ |
22 | - public static function isColumnNullable(string $column_name) : bool |
|
22 | + public static function isColumnNullable (string $column_name) : bool |
|
23 | 23 | { |
24 | 24 | // create an instance of the model to be able to get the table name |
25 | 25 | $instance = new static(); |
26 | - $conn = DB::connection($instance->getConnectionName()); |
|
27 | - $table = Config::get('database.connections.'.Config::get('database.default').'.pr e fix').$instance->getTable(); |
|
26 | + $conn = DB::connection ($instance->getConnectionName ()); |
|
27 | + $table = Config::get ('database.connections.'.Config::get ('database.default').'.pr e fix').$instance->getTable (); |
|
28 | 28 | // MongoDB columns are alway nullable |
29 | - if ($conn->getConfig()['driver'] === 'mongodb') { |
|
29 | + if ($conn->getConfig ()['driver'] === 'mongodb') { |
|
30 | 30 | return true; |
31 | 31 | } |
32 | 32 | // register the enum, json, jsonb, and citext column types, because Doctrine doesn't support it |
33 | - $conn->getDoctrineSchemaManager()->getDatabasePlatform()->registerDoctrineTypeMapping('enum', 'string'); |
|
34 | - $conn->getDoctrineSchemaManager()->getDatabasePlatform()->registerDoctrineTypeMapping('json', 'json_array'); |
|
35 | - $conn->getDoctrineSchemaManager()->getDatabasePlatform()->registerDoctrineTypeMapping('jsonb', 'json_array'); |
|
36 | - $conn->getDoctrineSchemaManager()->getDatabasePlatform()->registerDoctrineTypeMapping('citext', 'string'); |
|
37 | - return !$conn->getDoctrineColumn($table, $column_name)->getNotnull(); |
|
33 | + $conn->getDoctrineSchemaManager ()->getDatabasePlatform ()->registerDoctrineTypeMapping ('enum', 'string'); |
|
34 | + $conn->getDoctrineSchemaManager ()->getDatabasePlatform ()->registerDoctrineTypeMapping ('json', 'json_array'); |
|
35 | + $conn->getDoctrineSchemaManager ()->getDatabasePlatform ()->registerDoctrineTypeMapping ('jsonb', 'json_array'); |
|
36 | + $conn->getDoctrineSchemaManager ()->getDatabasePlatform ()->registerDoctrineTypeMapping ('citext', 'string'); |
|
37 | + return !$conn->getDoctrineColumn ($table, $column_name)->getNotnull (); |
|
38 | 38 | } |
39 | 39 | } |
@@ -14,7 +14,7 @@ discard block |
||
14 | 14 | * |
15 | 15 | * @return void |
16 | 16 | */ |
17 | - public function __construct() |
|
17 | + public function __construct () |
|
18 | 18 | { |
19 | 19 | } |
20 | 20 | |
@@ -24,15 +24,15 @@ discard block |
||
24 | 24 | * @param JobSaved $event |
25 | 25 | * @return void |
26 | 26 | */ |
27 | - public function handle(JobSaved $event) |
|
27 | + public function handle (JobSaved $event) |
|
28 | 28 | { |
29 | 29 | $job = $event->job; |
30 | 30 | |
31 | 31 | // If job has just been created, log if its being published now |
32 | 32 | // If job is being modified, only want to log when it goes from unpublished to published |
33 | 33 | if (($job->wasRecentlyCreated && $job->published) || |
34 | - (!$job->wasRecentlyCreated && $job->published && !$job->getOriginal('published'))) { |
|
35 | - Log::notice('Job published: job {id='.$job->id.'} published by manager {id='.$job->manager->id.', email='.$job->manager->user->email.'}'); |
|
34 | + (!$job->wasRecentlyCreated && $job->published && !$job->getOriginal ('published'))) { |
|
35 | + Log::notice ('Job published: job {id='.$job->id.'} published by manager {id='.$job->manager->id.', email='.$job->manager->user->email.'}'); |
|
36 | 36 | } |
37 | 37 | } |
38 | 38 | } |
@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | * |
13 | 13 | * @return void |
14 | 14 | */ |
15 | - public function __construct() |
|
15 | + public function __construct () |
|
16 | 16 | { |
17 | 17 | } |
18 | 18 | |
@@ -22,16 +22,16 @@ discard block |
||
22 | 22 | * @param UserUpdated $event Fires after successful database update. |
23 | 23 | * @return void |
24 | 24 | */ |
25 | - public function handle(UserUpdated $event) : void |
|
25 | + public function handle (UserUpdated $event) : void |
|
26 | 26 | { |
27 | - if ($event->user->isManager() || |
|
28 | - $event->user->isAdmin() |
|
27 | + if ($event->user->isManager () || |
|
28 | + $event->user->isAdmin () |
|
29 | 29 | ) { |
30 | - $managerProfile = Manager::where('user_id', $event->user->id)->first(); |
|
30 | + $managerProfile = Manager::where ('user_id', $event->user->id)->first (); |
|
31 | 31 | if ($managerProfile === null) { |
32 | - $managerProfile = new Manager(); |
|
32 | + $managerProfile = new Manager (); |
|
33 | 33 | $managerProfile->user_id = $event->user->id; |
34 | - $managerProfile->save(); |
|
34 | + $managerProfile->save (); |
|
35 | 35 | } |
36 | 36 | } |
37 | 37 | } |
@@ -8,36 +8,36 @@ |
||
8 | 8 | class WhichPortal |
9 | 9 | { |
10 | 10 | |
11 | - public function isApplicantPortal() |
|
11 | + public function isApplicantPortal () |
|
12 | 12 | { |
13 | - return !$this->isManagerPortal() && !$this->isAdminPortal(); |
|
13 | + return !$this->isManagerPortal () && !$this->isAdminPortal (); |
|
14 | 14 | } |
15 | 15 | |
16 | - public function isManagerPortal() |
|
16 | + public function isManagerPortal () |
|
17 | 17 | { |
18 | - $url = URL::current(); |
|
19 | - return $this->urlIsManagerPortal($url); |
|
18 | + $url = URL::current (); |
|
19 | + return $this->urlIsManagerPortal ($url); |
|
20 | 20 | } |
21 | 21 | |
22 | - public function isAdminPortal() |
|
22 | + public function isAdminPortal () |
|
23 | 23 | { |
24 | - $url = URL::current(); |
|
25 | - return $this->urlIsAdminPortal($url); |
|
24 | + $url = URL::current (); |
|
25 | + return $this->urlIsAdminPortal ($url); |
|
26 | 26 | } |
27 | 27 | |
28 | - public function urlIsManagerPortal($url): bool |
|
28 | + public function urlIsManagerPortal ($url): bool |
|
29 | 29 | { |
30 | - $baseUrl = config('app.url'); |
|
31 | - $managerPrefix = config('app.manager_prefix'); |
|
30 | + $baseUrl = config ('app.url'); |
|
31 | + $managerPrefix = config ('app.manager_prefix'); |
|
32 | 32 | $managerPattern = "#^$baseUrl/(\w+/)?$managerPrefix(/.*)?$#"; |
33 | - return preg_match($managerPattern, $url); |
|
33 | + return preg_match ($managerPattern, $url); |
|
34 | 34 | } |
35 | 35 | |
36 | - public function urlIsAdminPortal($url): bool |
|
36 | + public function urlIsAdminPortal ($url): bool |
|
37 | 37 | { |
38 | - $baseUrl = config('app.url'); |
|
39 | - $adminPrefix = config('backpack.base.route_prefix', 'admin'); |
|
38 | + $baseUrl = config ('app.url'); |
|
39 | + $adminPrefix = config ('backpack.base.route_prefix', 'admin'); |
|
40 | 40 | $adminPattern = "#^$baseUrl/(\w+/)?$adminPrefix(/.*)?$#"; |
41 | - return preg_match($adminPattern, $url); |
|
41 | + return preg_match ($adminPattern, $url); |
|
42 | 42 | } |
43 | 43 | } |
@@ -19,7 +19,7 @@ discard block |
||
19 | 19 | * |
20 | 20 | * @param string $className |
21 | 21 | */ |
22 | - public function __construct(string $className) |
|
22 | + public function __construct (string $className) |
|
23 | 23 | { |
24 | 24 | $this->className = $className; |
25 | 25 | } |
@@ -31,10 +31,10 @@ discard block |
||
31 | 31 | * @param mixed $value |
32 | 32 | * @return bool |
33 | 33 | */ |
34 | - public function passes($attribute, $value) |
|
34 | + public function passes ($attribute, $value) |
|
35 | 35 | { |
36 | 36 | $model = $this->className; |
37 | - return $model::where('id', $value)->exists(); |
|
37 | + return $model::where ('id', $value)->exists (); |
|
38 | 38 | } |
39 | 39 | |
40 | 40 | /** |
@@ -42,8 +42,8 @@ discard block |
||
42 | 42 | * |
43 | 43 | * @return string |
44 | 44 | */ |
45 | - public function message() |
|
45 | + public function message () |
|
46 | 46 | { |
47 | - return Lang::get('validation.invalid_id'); |
|
47 | + return Lang::get ('validation.invalid_id'); |
|
48 | 48 | } |
49 | 49 | } |