@@ -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 |
@@ -56,17 +56,17 @@ |
||
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']) ? (bool)$options['cast_dates'] : true; |
|
69 | + $castDates = isset($options['cast_dates']) ? (bool) $options['cast_dates'] : true; |
|
70 | 70 | $dateTypes = [ |
71 | 71 | 'date', |
72 | 72 | 'date_immutable', |