@@ -5,7 +5,8 @@ |
||
| 5 | 5 | } |
| 6 | 6 | |
| 7 | 7 | // Super debug func |
| 8 | -function prr($value) { |
|
| 8 | +function prr($value) |
|
| 9 | +{ |
|
| 9 | 10 | if (defined('DEBUG_MODE') && DEBUG_MODE == 1) { |
| 10 | 11 | echo '<pre>'; |
| 11 | 12 | print_r($value); |
@@ -8,8 +8,7 @@ |
||
| 8 | 8 | */ |
| 9 | 9 | public function up() |
| 10 | 10 | { |
| 11 | - Capsule::schema()->create('roles', function($table) |
|
| 12 | - { |
|
| 11 | + Capsule::schema()->create('roles', function($table) { |
|
| 13 | 12 | $table->increments('id'); |
| 14 | 13 | $table->string('name')->unique(); |
| 15 | 14 | $table->string('description'); |
@@ -2,7 +2,8 @@ |
||
| 2 | 2 | use App\Model\Role; |
| 3 | 3 | use App\Model\User; |
| 4 | 4 | |
| 5 | -class CreateRolesRightsUsers { |
|
| 5 | +class CreateRolesRightsUsers |
|
| 6 | +{ |
|
| 6 | 7 | public function run() |
| 7 | 8 | { |
| 8 | 9 | Role::create([ |
@@ -141,7 +141,7 @@ |
||
| 141 | 141 | $user->setPassword($params['data']['attributes']['password']); |
| 142 | 142 | $user->removePasswordResetToken(); |
| 143 | 143 | |
| 144 | - if($user->save()){ |
|
| 144 | + if ($user->save()) { |
|
| 145 | 145 | return $this->renderer->jsonApiRender($response, 204); |
| 146 | 146 | }; |
| 147 | 147 | } |
@@ -141,7 +141,7 @@ |
||
| 141 | 141 | $user->setPassword($params['data']['attributes']['password']); |
| 142 | 142 | $user->removePasswordResetToken(); |
| 143 | 143 | |
| 144 | - if($user->save()){ |
|
| 144 | + if($user->save()) { |
|
| 145 | 145 | return $this->renderer->jsonApiRender($response, 204); |
| 146 | 146 | }; |
| 147 | 147 | } |
@@ -163,7 +163,7 @@ discard block |
||
| 163 | 163 | /** |
| 164 | 164 | * Register model observers |
| 165 | 165 | */ |
| 166 | - private function registerModelObservers(){ |
|
| 166 | + private function registerModelObservers() { |
|
| 167 | 167 | $observers = [ |
| 168 | 168 | Observers\CreatedByAndUpdatedByObserver::class => [ |
| 169 | 169 | Model\Right::class, |
@@ -178,9 +178,9 @@ discard block |
||
| 178 | 178 | ] |
| 179 | 179 | ]; |
| 180 | 180 | |
| 181 | - foreach($observers as $observer => $models){ |
|
| 182 | - foreach($models as $model){ |
|
| 183 | - call_user_func($model. '::observe', $observer); |
|
| 181 | + foreach ($observers as $observer => $models) { |
|
| 182 | + foreach ($models as $model) { |
|
| 183 | + call_user_func($model.'::observe', $observer); |
|
| 184 | 184 | } |
| 185 | 185 | } |
| 186 | 186 | } |
@@ -163,7 +163,8 @@ discard block |
||
| 163 | 163 | /** |
| 164 | 164 | * Register model observers |
| 165 | 165 | */ |
| 166 | - private function registerModelObservers(){ |
|
| 166 | + private function registerModelObservers() |
|
| 167 | + { |
|
| 167 | 168 | $observers = [ |
| 168 | 169 | Observers\CreatedByAndUpdatedByObserver::class => [ |
| 169 | 170 | Model\Right::class, |
@@ -178,8 +179,8 @@ discard block |
||
| 178 | 179 | ] |
| 179 | 180 | ]; |
| 180 | 181 | |
| 181 | - foreach($observers as $observer => $models){ |
|
| 182 | - foreach($models as $model){ |
|
| 182 | + foreach($observers as $observer => $models) { |
|
| 183 | + foreach($models as $model) { |
|
| 183 | 184 | call_user_func($model. '::observe', $observer); |
| 184 | 185 | } |
| 185 | 186 | } |
@@ -44,7 +44,7 @@ |
||
| 44 | 44 | $query = $query->whereNotIn($filter['attribute'], $filter['value']); |
| 45 | 45 | break; |
| 46 | 46 | case 'like': |
| 47 | - $query = $query->where($filter['attribute'], 'like', '%' . $filter['value'] . '%'); |
|
| 47 | + $query = $query->where($filter['attribute'], 'like', '%'.$filter['value'].'%'); |
|
| 48 | 48 | break; |
| 49 | 49 | case '=': |
| 50 | 50 | case '!=': |
@@ -34,7 +34,9 @@ |
||
| 34 | 34 | $filter['operator'] = trim(strtolower($filter['operator'])); |
| 35 | 35 | $filter['attribute'] = trim($filter['attribute']); |
| 36 | 36 | |
| 37 | - if (empty($filter['operator']) || empty($filter['attribute']) || empty($filter['value'])) continue; |
|
| 37 | + if (empty($filter['operator']) || empty($filter['attribute']) || empty($filter['value'])) { |
|
| 38 | + continue; |
|
| 39 | + } |
|
| 38 | 40 | |
| 39 | 41 | switch ($filter['operator']) { |
| 40 | 42 | case 'in': |
@@ -49,7 +49,7 @@ |
||
| 49 | 49 | */ |
| 50 | 50 | public static function getUserId() |
| 51 | 51 | { |
| 52 | - if(self::checkUser()){ |
|
| 52 | + if (self::checkUser()) { |
|
| 53 | 53 | return self::$user->id; |
| 54 | 54 | } else { |
| 55 | 55 | return null; |
@@ -8,12 +8,16 @@ discard block |
||
| 8 | 8 | /** |
| 9 | 9 | * Forbidden to create new instances |
| 10 | 10 | */ |
| 11 | - private function __construct() {} |
|
| 11 | + private function __construct() |
|
| 12 | + { |
|
| 13 | +} |
|
| 12 | 14 | |
| 13 | 15 | /** |
| 14 | 16 | * Forbidden to cloned instances |
| 15 | 17 | */ |
| 16 | - private function __clone() {} |
|
| 18 | + private function __clone() |
|
| 19 | + { |
|
| 20 | +} |
|
| 17 | 21 | |
| 18 | 22 | /** |
| 19 | 23 | * @var User |
@@ -49,7 +53,7 @@ discard block |
||
| 49 | 53 | */ |
| 50 | 54 | public static function getUserId() |
| 51 | 55 | { |
| 52 | - if(self::checkUser()){ |
|
| 56 | + if(self::checkUser()) { |
|
| 53 | 57 | return self::$user->id; |
| 54 | 58 | } else { |
| 55 | 59 | return null; |
@@ -50,10 +50,12 @@ |
||
| 50 | 50 | ob_start(); |
| 51 | 51 | $this->protectedIncludeScope($this->templatePath . $template, $data); |
| 52 | 52 | $output = ob_get_clean(); |
| 53 | - } catch(\Throwable $e) { // PHP 7+ |
|
| 53 | + } catch(\Throwable $e) { |
|
| 54 | +// PHP 7+ |
|
| 54 | 55 | ob_end_clean(); |
| 55 | 56 | throw $e; |
| 56 | - } catch(\Exception $e) { // PHP < 7 |
|
| 57 | + } catch(\Exception $e) { |
|
| 58 | +// PHP < 7 |
|
| 57 | 59 | ob_end_clean(); |
| 58 | 60 | throw $e; |
| 59 | 61 | } |
@@ -21,7 +21,7 @@ discard block |
||
| 21 | 21 | */ |
| 22 | 22 | public function __construct($templatePath = '', $attributes = []) |
| 23 | 23 | { |
| 24 | - $this->templatePath = rtrim($templatePath, '/\\') . '/'; |
|
| 24 | + $this->templatePath = rtrim($templatePath, '/\\').'/'; |
|
| 25 | 25 | $this->attributes = $attributes; |
| 26 | 26 | } |
| 27 | 27 | |
@@ -40,7 +40,7 @@ discard block |
||
| 40 | 40 | throw new \InvalidArgumentException('Duplicate template key found'); |
| 41 | 41 | } |
| 42 | 42 | |
| 43 | - if (!is_file($this->templatePath . $template)) { |
|
| 43 | + if (!is_file($this->templatePath.$template)) { |
|
| 44 | 44 | throw new \RuntimeException('View cannot render `$template` because the template does not exist'); |
| 45 | 45 | } |
| 46 | 46 | |
@@ -48,12 +48,12 @@ discard block |
||
| 48 | 48 | |
| 49 | 49 | try { |
| 50 | 50 | ob_start(); |
| 51 | - $this->protectedIncludeScope($this->templatePath . $template, $data); |
|
| 51 | + $this->protectedIncludeScope($this->templatePath.$template, $data); |
|
| 52 | 52 | $output = ob_get_clean(); |
| 53 | - } catch(\Throwable $e) { // PHP 7+ |
|
| 53 | + } catch (\Throwable $e) { // PHP 7+ |
|
| 54 | 54 | ob_end_clean(); |
| 55 | 55 | throw $e; |
| 56 | - } catch(\Exception $e) { // PHP < 7 |
|
| 56 | + } catch (\Exception $e) { // PHP < 7 |
|
| 57 | 57 | ob_end_clean(); |
| 58 | 58 | throw $e; |
| 59 | 59 | } |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | * @param string $template |
| 66 | 66 | * @param array $data |
| 67 | 67 | */ |
| 68 | - protected function protectedIncludeScope ($template, array $data) |
|
| 68 | + protected function protectedIncludeScope($template, array $data) |
|
| 69 | 69 | { |
| 70 | 70 | extract($data); |
| 71 | 71 | include $template; |
@@ -312,7 +312,7 @@ |
||
| 312 | 312 | return [ |
| 313 | 313 | 'full_name' => $user->full_name, |
| 314 | 314 | 'email' => $user->email, |
| 315 | - 'role_id' => (int) $user->role_id, |
|
| 315 | + 'role_id' => (int)$user->role_id, |
|
| 316 | 316 | 'created_at' => Carbon::parse($user->created_at)->setTimezone('UTC')->format(Carbon::ISO8601), |
| 317 | 317 | 'updated_at' => Carbon::parse($user->updated_at)->setTimezone('UTC')->format(Carbon::ISO8601), |
| 318 | 318 | 'created_by' => $user->created_by, |