@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | */ |
36 | 36 | public function update(array $parameters): \Psr\Http\Message\ResponseInterface |
37 | 37 | { |
38 | - if (! isset($parameters['json'])) { |
|
38 | + if (!isset($parameters['json'])) { |
|
39 | 39 | $parameters = [ |
40 | 40 | 'json' => $parameters, |
41 | 41 | ]; |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | */ |
60 | 60 | public function create(array $parameters): \Psr\Http\Message\ResponseInterface |
61 | 61 | { |
62 | - if (! isset($parameters['json'])) { |
|
62 | + if (!isset($parameters['json'])) { |
|
63 | 63 | $parameters = [ |
64 | 64 | 'json' => $parameters, |
65 | 65 | ]; |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | */ |
37 | 37 | public function update(array $parameters): \Psr\Http\Message\ResponseInterface |
38 | 38 | { |
39 | - if (! isset($parameters['json'])) { |
|
39 | + if (!isset($parameters['json'])) { |
|
40 | 40 | $parameters = [ |
41 | 41 | 'json' => $parameters, |
42 | 42 | ]; |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | */ |
61 | 61 | public function create(array $parameters): \Psr\Http\Message\ResponseInterface |
62 | 62 | { |
63 | - if (! isset($parameters['json'])) { |
|
63 | + if (!isset($parameters['json'])) { |
|
64 | 64 | $parameters = [ |
65 | 65 | 'json' => $parameters, |
66 | 66 | ]; |
@@ -20,12 +20,12 @@ discard block |
||
20 | 20 | */ |
21 | 21 | public function getByDateRange($start, $end): \Psr\Http\Message\ResponseInterface |
22 | 22 | { |
23 | - if (! $start instanceof \DateTime) { |
|
23 | + if (!$start instanceof \DateTime) { |
|
24 | 24 | $start = new \DateTime($start); |
25 | 25 | } |
26 | 26 | $start = $start->format('Y-m-d'); |
27 | 27 | |
28 | - if (! $end instanceof \DateTime) { |
|
28 | + if (!$end instanceof \DateTime) { |
|
29 | 29 | $end = new \DateTime($end); |
30 | 30 | } |
31 | 31 | $end = $end->format('Y-m-d'); |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | */ |
101 | 101 | public function update(array $parameters): \Psr\Http\Message\ResponseInterface |
102 | 102 | { |
103 | - if (! isset($parameters['json'])) { |
|
103 | + if (!isset($parameters['json'])) { |
|
104 | 104 | $parameters = [ |
105 | 105 | 'json' => $parameters, |
106 | 106 | ]; |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | */ |
125 | 125 | public function create(array $parameters): \Psr\Http\Message\ResponseInterface |
126 | 126 | { |
127 | - if (! isset($parameters['json'])) { |
|
127 | + if (!isset($parameters['json'])) { |
|
128 | 128 | $parameters = [ |
129 | 129 | 'json' => $parameters, |
130 | 130 | ]; |
@@ -20,12 +20,12 @@ discard block |
||
20 | 20 | */ |
21 | 21 | public function getByDateRange($start, $end): \Psr\Http\Message\ResponseInterface |
22 | 22 | { |
23 | - if (! $start instanceof \DateTime) { |
|
23 | + if (!$start instanceof \DateTime) { |
|
24 | 24 | $start = new \DateTime($start); |
25 | 25 | } |
26 | 26 | $start = $start->format('Y-m-d'); |
27 | 27 | |
28 | - if (! $end instanceof \DateTime) { |
|
28 | + if (!$end instanceof \DateTime) { |
|
29 | 29 | $end = new \DateTime($end); |
30 | 30 | } |
31 | 31 | $end = $end->format('Y-m-d'); |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | */ |
101 | 101 | public function update(array $parameters): \Psr\Http\Message\ResponseInterface |
102 | 102 | { |
103 | - if (! isset($parameters['json'])) { |
|
103 | + if (!isset($parameters['json'])) { |
|
104 | 104 | $parameters = [ |
105 | 105 | 'json' => $parameters, |
106 | 106 | ]; |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | */ |
125 | 125 | public function create(array $parameters): \Psr\Http\Message\ResponseInterface |
126 | 126 | { |
127 | - if (! isset($parameters['json'])) { |
|
127 | + if (!isset($parameters['json'])) { |
|
128 | 128 | $parameters = [ |
129 | 129 | 'json' => $parameters, |
130 | 130 | ]; |
@@ -20,12 +20,12 @@ discard block |
||
20 | 20 | */ |
21 | 21 | public function getByDateRange($start, $end): \Psr\Http\Message\ResponseInterface |
22 | 22 | { |
23 | - if (! $start instanceof \DateTime) { |
|
23 | + if (!$start instanceof \DateTime) { |
|
24 | 24 | $start = new \DateTime($start); |
25 | 25 | } |
26 | 26 | $start = $start->format('Y-m-d'); |
27 | 27 | |
28 | - if (! $end instanceof \DateTime) { |
|
28 | + if (!$end instanceof \DateTime) { |
|
29 | 29 | $end = new \DateTime($end); |
30 | 30 | } |
31 | 31 | $end = $end->format('Y-m-d'); |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | */ |
101 | 101 | public function update(array $parameters): \Psr\Http\Message\ResponseInterface |
102 | 102 | { |
103 | - if (! isset($parameters['json'])) { |
|
103 | + if (!isset($parameters['json'])) { |
|
104 | 104 | $parameters = [ |
105 | 105 | 'json' => $parameters, |
106 | 106 | ]; |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | */ |
125 | 125 | public function create(array $parameters): \Psr\Http\Message\ResponseInterface |
126 | 126 | { |
127 | - if (! isset($parameters['json'])) { |
|
127 | + if (!isset($parameters['json'])) { |
|
128 | 128 | $parameters = [ |
129 | 129 | 'json' => $parameters, |
130 | 130 | ]; |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | */ |
37 | 37 | public function update(array $parameters): \Psr\Http\Message\ResponseInterface |
38 | 38 | { |
39 | - if (! isset($parameters['json'])) { |
|
39 | + if (!isset($parameters['json'])) { |
|
40 | 40 | $parameters = [ |
41 | 41 | 'json' => $parameters, |
42 | 42 | ]; |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | */ |
61 | 61 | public function create(array $parameters): \Psr\Http\Message\ResponseInterface |
62 | 62 | { |
63 | - if (! isset($parameters['json'])) { |
|
63 | + if (!isset($parameters['json'])) { |
|
64 | 64 | $parameters = [ |
65 | 65 | 'json' => $parameters, |
66 | 66 | ]; |