@@ -56,17 +56,17 @@ discard block |
||
56 | 56 | switch ($type) { |
57 | 57 | case 'integer': |
58 | 58 | case 'smallint': |
59 | - return (int)$value; |
|
59 | + return (int) $value; |
|
60 | 60 | case 'boolean': |
61 | - return (bool)$value; |
|
61 | + return (bool) $value; |
|
62 | 62 | case 'decimal': |
63 | 63 | case 'float': |
64 | - return (float)$value; |
|
64 | + return (float) $value; |
|
65 | 65 | case 'string': |
66 | - return (string)$value; |
|
66 | + return (string) $value; |
|
67 | 67 | } |
68 | 68 | |
69 | - $castDates = isset($options['cast_dates']) ? (boolean)$options['cast_dates'] : true; |
|
69 | + $castDates = isset($options['cast_dates']) ? (boolean) $options['cast_dates'] : true; |
|
70 | 70 | $dateTypes = [ |
71 | 71 | 'date', |
72 | 72 | 'date_immutable', |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | ]; |
77 | 77 | |
78 | 78 | return ($castDates && in_array($type, $dateTypes)) |
79 | - ? $this->castDateTime($type, $value, $options['format'] ?? null) |
|
79 | + ? $this->castDateTime($type, $value, $options['format'] ?? null) |
|
80 | 80 | : $value; |
81 | 81 | } |
82 | 82 | |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | switch ($type) { |
99 | 99 | case 'date': |
100 | 100 | case 'date_immutable': |
101 | - $castDates = (isset($options['cast_dates']) ? (bool)$options['cast_dates'] : true); |
|
101 | + $castDates = (isset($options['cast_dates']) ? (bool) $options['cast_dates'] : true); |
|
102 | 102 | $value = $castDates |
103 | 103 | ? $this->castDateTime($value, $options['format'] ?? 'Y-m-d') |
104 | 104 | : $value; |
@@ -110,14 +110,14 @@ discard block |
||
110 | 110 | |
111 | 111 | case 'datetime': |
112 | 112 | case 'datetime_immutable': |
113 | - $castDates = (isset($options['cast_dates']) ? (bool)$options['cast_dates'] : true); |
|
113 | + $castDates = (isset($options['cast_dates']) ? (bool) $options['cast_dates'] : true); |
|
114 | 114 | $value = $castDates |
115 | 115 | ? $this->castDateTime($value, $options['format'] ?? 'Y-m-d H:i:s') |
116 | 116 | : $value; |
117 | 117 | break; |
118 | 118 | |
119 | 119 | case 'time': |
120 | - $castDates = (isset($options['cast_dates']) ? (bool)$options['cast_dates'] : true); |
|
120 | + $castDates = (isset($options['cast_dates']) ? (bool) $options['cast_dates'] : true); |
|
121 | 121 | $value = $castDates |
122 | 122 | ? $this->castDateTime($value, $options['format'] ?? 'H:i:s') |
123 | 123 | : $value; |
@@ -143,7 +143,7 @@ |
||
143 | 143 | { |
144 | 144 | return [ |
145 | 145 | [null], |
146 | - [WhereType::AND], |
|
146 | + [WhereType:: AND ], |
|
147 | 147 | ]; |
148 | 148 | } |
149 | 149 | } |
@@ -87,21 +87,21 @@ |
||
87 | 87 | ->willReturn($alias); |
88 | 88 | } |
89 | 89 | |
90 | - $expressionString = $alias . '.' . $fieldName . ' ' . $this->expressionSymbol; |
|
90 | + $expressionString = $alias.'.'.$fieldName.' '.$this->expressionSymbol; |
|
91 | 91 | if (array_key_exists('value', $criteria)) { |
92 | - $expressionString .= ' :param_name'; |
|
92 | + $expressionString .= ' :param_name'; |
|
93 | 93 | } |
94 | 94 | |
95 | 95 | $expr->expects($this->once()) |
96 | 96 | ->method($this->expressionMethodName) |
97 | - ->with($alias . '.' . $fieldName) |
|
97 | + ->with($alias.'.'.$fieldName) |
|
98 | 98 | ->willReturn($comparisonExpr); |
99 | 99 | |
100 | 100 | $comparisonExpr->expects($this->once()) |
101 | 101 | ->method('__toString') |
102 | 102 | ->willReturn($expressionString); |
103 | 103 | |
104 | - $methodName = (!isset($criteria['where']) || WhereType::AND === $criteria['where']) |
|
104 | + $methodName = (!isset($criteria['where']) || WhereType:: AND === $criteria['where']) |
|
105 | 105 | ? 'andWhere' |
106 | 106 | : 'orWhere'; |
107 | 107 |