@@ -3,7 +3,7 @@ discard block |
||
3 | 3 | use Flugg\Responder\Contracts\Responder; |
4 | 4 | use Flugg\Responder\Contracts\Transformer; |
5 | 5 | |
6 | -if (! function_exists('is_iterable')) { |
|
6 | +if ( ! function_exists( 'is_iterable' ) ) { |
|
7 | 7 | |
8 | 8 | /** |
9 | 9 | * A helper to mimic php 7.1 is_iterable |
@@ -11,13 +11,13 @@ discard block |
||
11 | 11 | * @param mixed $var |
12 | 12 | * @return boolean |
13 | 13 | */ |
14 | - function is_iterable($var): bool |
|
14 | + function is_iterable( $var ): bool |
|
15 | 15 | { |
16 | - return is_array($var) || $var instanceof Traversable; |
|
16 | + return is_array( $var ) || $var instanceof Traversable; |
|
17 | 17 | } |
18 | 18 | } |
19 | 19 | |
20 | -if (! function_exists('responder')) { |
|
20 | +if ( ! function_exists( 'responder' ) ) { |
|
21 | 21 | |
22 | 22 | /** |
23 | 23 | * A helper method to resolve the responder service out of the service container. |
@@ -26,11 +26,11 @@ discard block |
||
26 | 26 | */ |
27 | 27 | function responder(): Responder |
28 | 28 | { |
29 | - return app(Responder::class); |
|
29 | + return app( Responder::class ); |
|
30 | 30 | } |
31 | 31 | } |
32 | 32 | |
33 | -if (! function_exists('transform')) { |
|
33 | +if ( ! function_exists( 'transform' ) ) { |
|
34 | 34 | |
35 | 35 | /** |
36 | 36 | * A helper method to transform data without serializing. |
@@ -41,8 +41,8 @@ discard block |
||
41 | 41 | * @param string[] $without |
42 | 42 | * @return array |
43 | 43 | */ |
44 | - function transform($data = null, $transformer = null, array $with = [], array $without = []): array |
|
44 | + function transform( $data = null, $transformer = null, array $with = [ ], array $without = [ ] ): array |
|
45 | 45 | { |
46 | - return app(Transformer::class)->transform($data, $transformer, $with, $without); |
|
46 | + return app( Transformer::class )->transform( $data, $transformer, $with, $without ); |
|
47 | 47 | } |
48 | 48 | } |
@@ -56,11 +56,11 @@ discard block |
||
56 | 56 | * @param \Flugg\Responder\Contracts\ResponseFactory $responseFactory |
57 | 57 | * @param \Flugg\Responder\Contracts\ErrorFactory $errorFactory |
58 | 58 | */ |
59 | - public function __construct(ResponseFactory $responseFactory, ErrorFactory $errorFactory) |
|
59 | + public function __construct( ResponseFactory $responseFactory, ErrorFactory $errorFactory ) |
|
60 | 60 | { |
61 | 61 | $this->errorFactory = $errorFactory; |
62 | 62 | |
63 | - parent::__construct($responseFactory); |
|
63 | + parent::__construct( $responseFactory ); |
|
64 | 64 | } |
65 | 65 | |
66 | 66 | /** |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | * @param string|null $message |
71 | 71 | * @return self |
72 | 72 | */ |
73 | - public function error(string $errorCode = null, string $message = null): ErrorResponseBuilder |
|
73 | + public function error( string $errorCode = null, string $message = null ): ErrorResponseBuilder |
|
74 | 74 | { |
75 | 75 | $this->errorCode = $errorCode; |
76 | 76 | $this->message = $message; |
@@ -84,9 +84,9 @@ discard block |
||
84 | 84 | * @param array $data |
85 | 85 | * @return self |
86 | 86 | */ |
87 | - public function data(array $data): ErrorResponseBuilder |
|
87 | + public function data( array $data ): ErrorResponseBuilder |
|
88 | 88 | { |
89 | - $this->data = array_merge((array) $this->data, $data); |
|
89 | + $this->data = array_merge( (array) $this->data, $data ); |
|
90 | 90 | |
91 | 91 | return $this; |
92 | 92 | } |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | */ |
99 | 99 | protected function getOutput(): array |
100 | 100 | { |
101 | - return $this->errorFactory->make($this->errorCode, $this->message, $this->data); |
|
101 | + return $this->errorFactory->make( $this->errorCode, $this->message, $this->data ); |
|
102 | 102 | } |
103 | 103 | |
104 | 104 | /** |
@@ -108,10 +108,10 @@ discard block |
||
108 | 108 | * @return void |
109 | 109 | * @throws \InvalidArgumentException |
110 | 110 | */ |
111 | - protected function validateStatusCode(int $status) |
|
111 | + protected function validateStatusCode( int $status ) |
|
112 | 112 | { |
113 | - if ($status < 400 || $status >= 600) { |
|
114 | - throw new InvalidArgumentException("{$status} is not a valid error HTTP status code."); |
|
113 | + if ( $status < 400 || $status >= 600 ) { |
|
114 | + throw new InvalidArgumentException( "{$status} is not a valid error HTTP status code." ); |
|
115 | 115 | } |
116 | 116 | } |
117 | 117 | } |
@@ -46,11 +46,11 @@ discard block |
||
46 | 46 | * @param \Flugg\Responder\Contracts\ResponseFactory $responseFactory |
47 | 47 | * @param \Flugg\Responder\TransformBuilder $transformBuilder |
48 | 48 | */ |
49 | - public function __construct(ResponseFactory $responseFactory, TransformBuilder $transformBuilder) |
|
49 | + public function __construct( ResponseFactory $responseFactory, TransformBuilder $transformBuilder ) |
|
50 | 50 | { |
51 | 51 | $this->transformBuilder = $transformBuilder; |
52 | 52 | |
53 | - parent::__construct($responseFactory); |
|
53 | + parent::__construct( $responseFactory ); |
|
54 | 54 | } |
55 | 55 | |
56 | 56 | /** |
@@ -61,9 +61,9 @@ discard block |
||
61 | 61 | * @param string|null $resourceKey |
62 | 62 | * @return self |
63 | 63 | */ |
64 | - public function transform($data = null, $transformer = null, string $resourceKey = null): SuccessResponseBuilder |
|
64 | + public function transform( $data = null, $transformer = null, string $resourceKey = null ): SuccessResponseBuilder |
|
65 | 65 | { |
66 | - $this->transformBuilder->resource($data, $transformer, $resourceKey); |
|
66 | + $this->transformBuilder->resource( $data, $transformer, $resourceKey ); |
|
67 | 67 | |
68 | 68 | return $this; |
69 | 69 | } |
@@ -75,10 +75,10 @@ discard block |
||
75 | 75 | * @param array $arguments |
76 | 76 | * @return self|void |
77 | 77 | */ |
78 | - public function __call($name, $arguments) |
|
78 | + public function __call( $name, $arguments ) |
|
79 | 79 | { |
80 | - if (in_array($name, ['meta', 'with', 'without', 'serializer', 'paginator', 'cursor'])) { |
|
81 | - $this->transformBuilder->$name(...$arguments); |
|
80 | + if ( in_array( $name, [ 'meta', 'with', 'without', 'serializer', 'paginator', 'cursor' ] ) ) { |
|
81 | + $this->transformBuilder->$name( ...$arguments ); |
|
82 | 82 | |
83 | 83 | return $this; |
84 | 84 | } |
@@ -103,10 +103,10 @@ discard block |
||
103 | 103 | * @return void |
104 | 104 | * @throws \InvalidArgumentException |
105 | 105 | */ |
106 | - protected function validateStatusCode(int $status) |
|
106 | + protected function validateStatusCode( int $status ) |
|
107 | 107 | { |
108 | - if ($status < 100 || $status >= 400) { |
|
109 | - throw new InvalidArgumentException("{$status} is not a valid success HTTP status code."); |
|
108 | + if ( $status < 100 || $status >= 400 ) { |
|
109 | + throw new InvalidArgumentException( "{$status} is not a valid success HTTP status code." ); |
|
110 | 110 | } |
111 | 111 | } |
112 | 112 | } |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | * |
37 | 37 | * @param \Flugg\Responder\Contracts\ResponseFactory $responseFactory |
38 | 38 | */ |
39 | - public function __construct(ResponseFactory $responseFactory) |
|
39 | + public function __construct( ResponseFactory $responseFactory ) |
|
40 | 40 | { |
41 | 41 | $this->responseFactory = $responseFactory; |
42 | 42 | } |
@@ -48,13 +48,13 @@ discard block |
||
48 | 48 | * @param array $headers |
49 | 49 | * @return \Illuminate\Http\JsonResponse |
50 | 50 | */ |
51 | - public function respond(int $status = null, array $headers = []): JsonResponse |
|
51 | + public function respond( int $status = null, array $headers = [ ] ): JsonResponse |
|
52 | 52 | { |
53 | - if (! is_null($status)) { |
|
54 | - $this->setStatusCode($status); |
|
53 | + if ( ! is_null( $status ) ) { |
|
54 | + $this->setStatusCode( $status ); |
|
55 | 55 | } |
56 | 56 | |
57 | - return $this->responseFactory->make($this->toArray(), $this->status, $headers); |
|
57 | + return $this->responseFactory->make( $this->toArray(), $this->status, $headers ); |
|
58 | 58 | } |
59 | 59 | |
60 | 60 | /** |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | */ |
75 | 75 | public function toCollection(): Collection |
76 | 76 | { |
77 | - return new Collection($this->toArray()); |
|
77 | + return new Collection( $this->toArray() ); |
|
78 | 78 | } |
79 | 79 | |
80 | 80 | /** |
@@ -83,9 +83,9 @@ discard block |
||
83 | 83 | * @param int $options |
84 | 84 | * @return string |
85 | 85 | */ |
86 | - public function toJson($options = 0): string |
|
86 | + public function toJson( $options = 0 ): string |
|
87 | 87 | { |
88 | - return json_encode($this->toArray(), $options); |
|
88 | + return json_encode( $this->toArray(), $options ); |
|
89 | 89 | } |
90 | 90 | |
91 | 91 | /** |
@@ -94,9 +94,9 @@ discard block |
||
94 | 94 | * @param int $status |
95 | 95 | * @return void |
96 | 96 | */ |
97 | - protected function setStatusCode(int $status) |
|
97 | + protected function setStatusCode( int $status ) |
|
98 | 98 | { |
99 | - $this->validateStatusCode($this->status = $status); |
|
99 | + $this->validateStatusCode( $this->status = $status ); |
|
100 | 100 | } |
101 | 101 | |
102 | 102 | /** |
@@ -112,5 +112,5 @@ discard block |
||
112 | 112 | * @param int $status |
113 | 113 | * @return void |
114 | 114 | */ |
115 | - abstract protected function validateStatusCode(int $status); |
|
115 | + abstract protected function validateStatusCode( int $status ); |
|
116 | 116 | } |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | * @param \Flugg\Responder\Contracts\ErrorMessageResolver $messageResolver |
36 | 36 | * @param \Flugg\Responder\Contracts\ErrorSerializer $serializer |
37 | 37 | */ |
38 | - public function __construct(ErrorMessageResolverContract $messageResolver, ErrorSerializerContract $serializer) |
|
38 | + public function __construct( ErrorMessageResolverContract $messageResolver, ErrorSerializerContract $serializer ) |
|
39 | 39 | { |
40 | 40 | $this->messageResolver = $messageResolver; |
41 | 41 | $this->serializer = $serializer; |
@@ -49,12 +49,12 @@ discard block |
||
49 | 49 | * @param array|null $data |
50 | 50 | * @return array |
51 | 51 | */ |
52 | - public function make(string $errorCode = null, string $message = null, array $data = null): array |
|
52 | + public function make( string $errorCode = null, string $message = null, array $data = null ): array |
|
53 | 53 | { |
54 | - if (isset($errorCode) && ! isset($message)) { |
|
55 | - $message = $this->messageResolver->resolve($errorCode); |
|
54 | + if ( isset($errorCode) && ! isset($message) ) { |
|
55 | + $message = $this->messageResolver->resolve( $errorCode ); |
|
56 | 56 | } |
57 | 57 | |
58 | - return $this->serializer->format($errorCode, $message, $data); |
|
58 | + return $this->serializer->format( $errorCode, $message, $data ); |
|
59 | 59 | } |
60 | 60 | } |
61 | 61 | \ No newline at end of file |