Passed
Branch master (d73875)
by Robert-John
03:14
created
Category
src/CustomersRequest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
             ];
Please login to merge, or discard this patch.
src/ProjectNotesRequest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
             ];
Please login to merge, or discard this patch.
src/ExpensesRequest.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -20,12 +20,12 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
             ];
Please login to merge, or discard this patch.
src/MileageRequest.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -20,12 +20,12 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
             ];
Please login to merge, or discard this patch.
src/TimeRequest.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -20,12 +20,12 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
             ];
Please login to merge, or discard this patch.
src/ProjectsRequest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
             ];
Please login to merge, or discard this patch.