@@ -15,7 +15,7 @@ |
||
| 15 | 15 | { |
| 16 | 16 | public function transformResource(DatabaseNotification $notification) |
| 17 | 17 | { |
| 18 | - $notificationData = (object)$notification->data; |
|
| 18 | + $notificationData = (object) $notification->data; |
|
| 19 | 19 | return [ |
| 20 | 20 | 'id' => $notification->getKey(), |
| 21 | 21 | 'title' => $notificationData->title, |
@@ -63,7 +63,7 @@ discard block |
||
| 63 | 63 | public function __construct($user) |
| 64 | 64 | { |
| 65 | 65 | $this->user = $user; |
| 66 | - parent::__construct([]); |
|
| 66 | + parent::__construct([ ]); |
|
| 67 | 67 | } |
| 68 | 68 | } |
| 69 | 69 | |
@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | { |
| 76 | 76 | public function toArray($request) |
| 77 | 77 | { |
| 78 | - return []; |
|
| 78 | + return [ ]; |
|
| 79 | 79 | } |
| 80 | 80 | |
| 81 | 81 | public function transformUser(MachineTestModel $machine) |
@@ -86,13 +86,13 @@ discard block |
||
| 86 | 86 | |
| 87 | 87 | class UserIncludedMachineTestTransformer extends MachineTestTransformer |
| 88 | 88 | { |
| 89 | - public $include = ['user']; |
|
| 89 | + public $include = [ 'user' ]; |
|
| 90 | 90 | } |
| 91 | 91 | |
| 92 | 92 | class UserTestTransformer extends Transformer |
| 93 | 93 | { |
| 94 | 94 | public function toArray($request) |
| 95 | 95 | { |
| 96 | - return []; |
|
| 96 | + return [ ]; |
|
| 97 | 97 | } |
| 98 | 98 | } |
@@ -26,7 +26,7 @@ discard block |
||
| 26 | 26 | return explode(',', $request->include); |
| 27 | 27 | } |
| 28 | 28 | |
| 29 | - return []; |
|
| 29 | + return [ ]; |
|
| 30 | 30 | } |
| 31 | 31 | |
| 32 | 32 | /** |
@@ -35,10 +35,10 @@ discard block |
||
| 35 | 35 | public function compileRelations() |
| 36 | 36 | { |
| 37 | 37 | $requestedRelations = $this->parseRequestIncludeParameter(); |
| 38 | - $relations = []; |
|
| 38 | + $relations = [ ]; |
|
| 39 | 39 | foreach ($requestedRelations as $requestedRelation) { |
| 40 | - if (isset($this->available[$requestedRelation])) { |
|
| 41 | - $relations[$requestedRelation] = $this->available[$requestedRelation]; |
|
| 40 | + if (isset($this->available[ $requestedRelation ])) { |
|
| 41 | + $relations[ $requestedRelation ] = $this->available[ $requestedRelation ]; |
|
| 42 | 42 | } |
| 43 | 43 | } |
| 44 | 44 | $merge = array_merge($this->include, $relations); |
@@ -56,7 +56,7 @@ discard block |
||
| 56 | 56 | if (is_array($relation)) { |
| 57 | 57 | $this->include = array_merge($this->include, $relation); |
| 58 | 58 | } else { |
| 59 | - $this->include[] = $relation; |
|
| 59 | + $this->include[ ] = $relation; |
|
| 60 | 60 | } |
| 61 | 61 | |
| 62 | 62 | return $this; |
@@ -64,18 +64,18 @@ discard block |
||
| 64 | 64 | |
| 65 | 65 | protected function includeRelations() |
| 66 | 66 | { |
| 67 | - $relations = []; |
|
| 67 | + $relations = [ ]; |
|
| 68 | 68 | if ($this->resource instanceof Model) { |
| 69 | 69 | $relations = $this->compileRelations(); |
| 70 | 70 | foreach ($relations as $relation => $transformer) { |
| 71 | 71 | $relationMethodName = 'transform'.ucfirst(strtolower($relation)); |
| 72 | 72 | if (method_exists($this, $relationMethodName)) { |
| 73 | - $relations[$relation] = $this->$relationMethodName($this->resource->$relation); |
|
| 73 | + $relations[ $relation ] = $this->$relationMethodName($this->resource->$relation); |
|
| 74 | 74 | } else { |
| 75 | 75 | if ($this->resource->$relation instanceof Model) { |
| 76 | - $relations[$relation] = $transformer::resource($this->whenLoaded($relation)); |
|
| 76 | + $relations[ $relation ] = $transformer::resource($this->whenLoaded($relation)); |
|
| 77 | 77 | } elseif ($this->resource->$relation instanceof Collection) { |
| 78 | - $relations[$relation] = $transformer::collection($this->whenLoaded($relation)); |
|
| 78 | + $relations[ $relation ] = $transformer::collection($this->whenLoaded($relation)); |
|
| 79 | 79 | } |
| 80 | 80 | } |
| 81 | 81 | } |
@@ -87,7 +87,7 @@ discard block |
||
| 87 | 87 | private static function loadRelations($resource, $extraRelations) |
| 88 | 88 | { |
| 89 | 89 | if ($resource instanceof Model || $resource instanceof Collection) { |
| 90 | - $relations = (array)call_class_function(static::class, 'compileRelations'); |
|
| 90 | + $relations = (array) call_class_function(static::class, 'compileRelations'); |
|
| 91 | 91 | $relations = array_merge($relations, $extraRelations); |
| 92 | 92 | $resource->loadMissing(array_keys($relations)); |
| 93 | 93 | } |
@@ -29,27 +29,27 @@ discard block |
||
| 29 | 29 | { |
| 30 | 30 | use IncludesRelations, HandlesLimit; |
| 31 | 31 | |
| 32 | - public $include = []; |
|
| 32 | + public $include = [ ]; |
|
| 33 | 33 | |
| 34 | - public $available = []; |
|
| 34 | + public $available = [ ]; |
|
| 35 | 35 | |
| 36 | 36 | public $limit = -1; |
| 37 | 37 | |
| 38 | - public function __construct($resource, $relations = []) |
|
| 38 | + public function __construct($resource, $relations = [ ]) |
|
| 39 | 39 | { |
| 40 | 40 | if (!($resource instanceof Model)) |
| 41 | 41 | throw new Exception('Object passed to the transformer resource method is not a eloquent model', 500); |
| 42 | 42 | $this->resource = $resource; |
| 43 | - $relations = is_array($relations) ? $relations : []; |
|
| 43 | + $relations = is_array($relations) ? $relations : [ ]; |
|
| 44 | 44 | parent::__construct(self::loadRelations($resource, $relations)); |
| 45 | 45 | } |
| 46 | 46 | |
| 47 | - public static function resource($model, array $relations = []): self |
|
| 47 | + public static function resource($model, array $relations = [ ]): self |
|
| 48 | 48 | { |
| 49 | 49 | return new static($model, $relations); |
| 50 | 50 | } |
| 51 | 51 | |
| 52 | - public static function collection($resource, array $relations = []) |
|
| 52 | + public static function collection($resource, array $relations = [ ]) |
|
| 53 | 53 | { |
| 54 | 54 | if (!($resource instanceof Collection)) |
| 55 | 55 | throw new Exception('Object passed to the transformer collection method is not a collection', 500); |
@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | public function toArray($request) |
| 69 | 69 | { |
| 70 | 70 | if (!method_exists($this, 'transformResource')) |
| 71 | - throw new \Exception("transformResource method not set on " . static::class, 500); |
|
| 71 | + throw new \Exception("transformResource method not set on ".static::class, 500); |
|
| 72 | 72 | return array_merge($this->transformResource($this->resource), $this->includeRelations()); |
| 73 | 73 | } |
| 74 | 74 | } |
@@ -37,8 +37,9 @@ discard block |
||
| 37 | 37 | |
| 38 | 38 | public function __construct($resource, $relations = []) |
| 39 | 39 | { |
| 40 | - if (!($resource instanceof Model)) |
|
| 41 | - throw new Exception('Object passed to the transformer resource method is not a eloquent model', 500); |
|
| 40 | + if (!($resource instanceof Model)) { |
|
| 41 | + throw new Exception('Object passed to the transformer resource method is not a eloquent model', 500); |
|
| 42 | + } |
|
| 42 | 43 | $this->resource = $resource; |
| 43 | 44 | $relations = is_array($relations) ? $relations : []; |
| 44 | 45 | parent::__construct(self::loadRelations($resource, $relations)); |
@@ -51,8 +52,9 @@ discard block |
||
| 51 | 52 | |
| 52 | 53 | public static function collection($resource, array $relations = []) |
| 53 | 54 | { |
| 54 | - if (!($resource instanceof Collection)) |
|
| 55 | - throw new Exception('Object passed to the transformer collection method is not a collection', 500); |
|
| 55 | + if (!($resource instanceof Collection)) { |
|
| 56 | + throw new Exception('Object passed to the transformer collection method is not a collection', 500); |
|
| 57 | + } |
|
| 56 | 58 | |
| 57 | 59 | $resource = self::processLimit($resource); |
| 58 | 60 | $resource = self::loadRelations($resource, $relations); |
@@ -67,8 +69,9 @@ discard block |
||
| 67 | 69 | |
| 68 | 70 | public function toArray($request) |
| 69 | 71 | { |
| 70 | - if (!method_exists($this, 'transformResource')) |
|
| 71 | - throw new \Exception("transformResource method not set on " . static::class, 500); |
|
| 72 | + if (!method_exists($this, 'transformResource')) { |
|
| 73 | + throw new \Exception("transformResource method not set on " . static::class, 500); |
|
| 74 | + } |
|
| 72 | 75 | return array_merge($this->transformResource($this->resource), $this->includeRelations()); |
| 73 | 76 | } |
| 74 | 77 | } |
@@ -47,7 +47,7 @@ |
||
| 47 | 47 | $limit = call_class_function($class,'getLimitParameter'); |
| 48 | 48 | if($limit === -1) |
| 49 | 49 | return $resource; |
| 50 | - return $resource->take((int) $limit); |
|
| 50 | + return $resource->take((int) $limit); |
|
| 51 | 51 | } |
| 52 | 52 | |
| 53 | 53 | |
@@ -23,7 +23,7 @@ discard block |
||
| 23 | 23 | { |
| 24 | 24 | $request = request(); |
| 25 | 25 | if (isset($request->limit) && is_numeric($request->limit)) { |
| 26 | - return (int)$request->limit; |
|
| 26 | + return (int) $request->limit; |
|
| 27 | 27 | } |
| 28 | 28 | |
| 29 | 29 | return -1; |
@@ -42,10 +42,10 @@ discard block |
||
| 42 | 42 | return $requestedLimit; |
| 43 | 43 | } |
| 44 | 44 | |
| 45 | - private static function processLimit(Collection $resource){ |
|
| 45 | + private static function processLimit(Collection $resource) { |
|
| 46 | 46 | $class = static::class; |
| 47 | - $limit = call_class_function($class,'getLimitParameter'); |
|
| 48 | - if($limit === -1) |
|
| 47 | + $limit = call_class_function($class, 'getLimitParameter'); |
|
| 48 | + if ($limit === -1) |
|
| 49 | 49 | return $resource; |
| 50 | 50 | return $resource->take((int) $limit); |
| 51 | 51 | } |
@@ -34,9 +34,9 @@ discard block |
||
| 34 | 34 | $requestedLimit = $this->parseRequestLimitParameter(); |
| 35 | 35 | $maxLimit = $this->limit; |
| 36 | 36 | |
| 37 | - if ($maxLimit === -1) |
|
| 38 | - return $requestedLimit; |
|
| 39 | - elseif ($requestedLimit > $maxLimit) { |
|
| 37 | + if ($maxLimit === -1) { |
|
| 38 | + return $requestedLimit; |
|
| 39 | + } elseif ($requestedLimit > $maxLimit) { |
|
| 40 | 40 | return $maxLimit; |
| 41 | 41 | } |
| 42 | 42 | return $requestedLimit; |
@@ -45,8 +45,9 @@ discard block |
||
| 45 | 45 | private static function processLimit(Collection $resource){ |
| 46 | 46 | $class = static::class; |
| 47 | 47 | $limit = call_class_function($class,'getLimitParameter'); |
| 48 | - if($limit === -1) |
|
| 49 | - return $resource; |
|
| 48 | + if($limit === -1) { |
|
| 49 | + return $resource; |
|
| 50 | + } |
|
| 50 | 51 | return $resource->take((int) $limit); |
| 51 | 52 | } |
| 52 | 53 | |