@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | */ |
41 | 41 | public function has($name) |
42 | 42 | { |
43 | - return xcache_isset($this->prefix . $name); |
|
43 | + return xcache_isset($this->prefix.$name); |
|
44 | 44 | } |
45 | 45 | |
46 | 46 | /** |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | */ |
49 | 49 | public function get($name) |
50 | 50 | { |
51 | - return xcache_get($this->prefix . $name); |
|
51 | + return xcache_get($this->prefix.$name); |
|
52 | 52 | } |
53 | 53 | |
54 | 54 | /** |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | */ |
57 | 57 | public function set($name, $data, $lifetime) |
58 | 58 | { |
59 | - return xcache_set($this->prefix . $name, $data, $lifetime); |
|
59 | + return xcache_set($this->prefix.$name, $data, $lifetime); |
|
60 | 60 | } |
61 | 61 | |
62 | 62 | /** |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | */ |
65 | 65 | public function forever($name, $data) |
66 | 66 | { |
67 | - return xcache_set($this->prefix . $name, $data, 0); |
|
67 | + return xcache_set($this->prefix.$name, $data, 0); |
|
68 | 68 | } |
69 | 69 | |
70 | 70 | /** |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | */ |
73 | 73 | public function delete($name) |
74 | 74 | { |
75 | - xcache_unset($this->prefix . $name); |
|
75 | + xcache_unset($this->prefix.$name); |
|
76 | 76 | } |
77 | 77 | |
78 | 78 | /** |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | */ |
81 | 81 | public function inc($name, $delta = 1) |
82 | 82 | { |
83 | - return xcache_inc($this->prefix . $name, $delta); |
|
83 | + return xcache_inc($this->prefix.$name, $delta); |
|
84 | 84 | } |
85 | 85 | |
86 | 86 | /** |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | */ |
89 | 89 | public function dec($name, $delta = 1) |
90 | 90 | { |
91 | - return xcache_dec($this->prefix . $name, $delta); |
|
91 | + return xcache_dec($this->prefix.$name, $delta); |
|
92 | 92 | } |
93 | 93 | |
94 | 94 | /** |
@@ -68,10 +68,10 @@ discard block |
||
68 | 68 | public function has($name) |
69 | 69 | { |
70 | 70 | if ($this->driver == self::APCU_DRIVER) { |
71 | - return apcu_exists($this->prefix . $name); |
|
71 | + return apcu_exists($this->prefix.$name); |
|
72 | 72 | } |
73 | 73 | |
74 | - return apc_exists($this->prefix . $name); |
|
74 | + return apc_exists($this->prefix.$name); |
|
75 | 75 | } |
76 | 76 | |
77 | 77 | /** |
@@ -80,10 +80,10 @@ discard block |
||
80 | 80 | public function get($name) |
81 | 81 | { |
82 | 82 | if ($this->driver == self::APCU_DRIVER) { |
83 | - return apcu_fetch($this->prefix . $name); |
|
83 | + return apcu_fetch($this->prefix.$name); |
|
84 | 84 | } |
85 | 85 | |
86 | - return apc_fetch($this->prefix . $name); |
|
86 | + return apc_fetch($this->prefix.$name); |
|
87 | 87 | } |
88 | 88 | |
89 | 89 | /** |
@@ -92,10 +92,10 @@ discard block |
||
92 | 92 | public function set($name, $data, $lifetime) |
93 | 93 | { |
94 | 94 | if ($this->driver == self::APCU_DRIVER) { |
95 | - return apcu_store($this->prefix . $name, $data, $lifetime); |
|
95 | + return apcu_store($this->prefix.$name, $data, $lifetime); |
|
96 | 96 | } |
97 | 97 | |
98 | - return apc_store($this->prefix . $name, $data, $lifetime); |
|
98 | + return apc_store($this->prefix.$name, $data, $lifetime); |
|
99 | 99 | } |
100 | 100 | |
101 | 101 | /** |
@@ -112,12 +112,12 @@ discard block |
||
112 | 112 | public function delete($name) |
113 | 113 | { |
114 | 114 | if ($this->driver == self::APCU_DRIVER) { |
115 | - apcu_delete($this->prefix . $name); |
|
115 | + apcu_delete($this->prefix.$name); |
|
116 | 116 | |
117 | 117 | return; |
118 | 118 | } |
119 | 119 | |
120 | - apc_delete($this->prefix . $name); |
|
120 | + apc_delete($this->prefix.$name); |
|
121 | 121 | } |
122 | 122 | |
123 | 123 | /** |
@@ -126,10 +126,10 @@ discard block |
||
126 | 126 | public function inc($name, $delta = 1) |
127 | 127 | { |
128 | 128 | if ($this->driver == self::APCU_DRIVER) { |
129 | - return apcu_inc($this->prefix . $name, $delta); |
|
129 | + return apcu_inc($this->prefix.$name, $delta); |
|
130 | 130 | } |
131 | 131 | |
132 | - return apc_inc($this->prefix . $name, $delta); |
|
132 | + return apc_inc($this->prefix.$name, $delta); |
|
133 | 133 | } |
134 | 134 | |
135 | 135 | /** |
@@ -138,10 +138,10 @@ discard block |
||
138 | 138 | public function dec($name, $delta = 1) |
139 | 139 | { |
140 | 140 | if ($this->driver == self::APCU_DRIVER) { |
141 | - return apcu_dec($this->prefix . $name, $delta); |
|
141 | + return apcu_dec($this->prefix.$name, $delta); |
|
142 | 142 | } |
143 | 143 | |
144 | - return apc_dec($this->prefix . $name, $delta); |
|
144 | + return apc_dec($this->prefix.$name, $delta); |
|
145 | 145 | } |
146 | 146 | |
147 | 147 | /** |
@@ -50,7 +50,7 @@ |
||
50 | 50 | && stripos($url, 'http://') === false && stripos($url, 'https://') === false |
51 | 51 | ) { |
52 | 52 | //Forcing scheme (not super great idea) |
53 | - $url = 'http://' . $url; |
|
53 | + $url = 'http://'.$url; |
|
54 | 54 | } |
55 | 55 | |
56 | 56 | return (bool)filter_var($url, FILTER_VALIDATE_URL); |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | if ($this->isCloseTag($token)) { |
72 | 72 | $blockID = $this->uniqueID(); |
73 | 73 | |
74 | - $this->phpBlocks[$blockID] = $phpBlock . $token[1]; |
|
74 | + $this->phpBlocks[$blockID] = $phpBlock.$token[1]; |
|
75 | 75 | $isolated .= $this->placeholder($blockID); |
76 | 76 | |
77 | 77 | $phpBlock = ''; |
@@ -144,7 +144,7 @@ discard block |
||
144 | 144 | { |
145 | 145 | return preg_replace_callback( |
146 | 146 | $this->blockRegex(), |
147 | - function ($match) { |
|
147 | + function($match) { |
|
148 | 148 | if (!isset($this->phpBlocks[$match['id']])) { |
149 | 149 | return $match[0]; |
150 | 150 | } |
@@ -180,7 +180,7 @@ discard block |
||
180 | 180 | */ |
181 | 181 | private function blockRegex() |
182 | 182 | { |
183 | - return '/' . |
|
183 | + return '/'. |
|
184 | 184 | preg_quote($this->prefix) |
185 | 185 | . '(?P<id>[0-9a-z]+)' |
186 | 186 | . preg_quote($this->postfix) |
@@ -192,7 +192,7 @@ discard block |
||
192 | 192 | */ |
193 | 193 | private function uniqueID() |
194 | 194 | { |
195 | - return md5(count($this->phpBlocks) . uniqid(true)); |
|
195 | + return md5(count($this->phpBlocks).uniqid(true)); |
|
196 | 196 | } |
197 | 197 | |
198 | 198 | /** |
@@ -201,7 +201,7 @@ discard block |
||
201 | 201 | */ |
202 | 202 | private function placeholder($blockID) |
203 | 203 | { |
204 | - return $this->prefix . $blockID . $this->postfix; |
|
204 | + return $this->prefix.$blockID.$this->postfix; |
|
205 | 205 | } |
206 | 206 | |
207 | 207 | /** |
@@ -401,7 +401,7 @@ discard block |
||
401 | 401 | |
402 | 402 | $name = $this->tokens[$localID][self::TOKEN_CODE]; |
403 | 403 | if (!empty($namespace = $this->activeNamespace($tokenID))) { |
404 | - $name = $namespace . self::NS_SEPARATOR . $name; |
|
404 | + $name = $namespace.self::NS_SEPARATOR.$name; |
|
405 | 405 | } |
406 | 406 | |
407 | 407 | $this->functions[$name] = [ |
@@ -426,7 +426,7 @@ discard block |
||
426 | 426 | |
427 | 427 | $name = $this->tokens[$localID][self::TOKEN_CODE]; |
428 | 428 | if (!empty($namespace = $this->activeNamespace($tokenID))) { |
429 | - $name = $namespace . self::NS_SEPARATOR . $name; |
|
429 | + $name = $namespace.self::NS_SEPARATOR.$name; |
|
430 | 430 | } |
431 | 431 | |
432 | 432 | $this->declarations[token_name($tokenType)][$name] = [ |
@@ -39,7 +39,7 @@ |
||
39 | 39 | |
40 | 40 | $name = $context->getName(); |
41 | 41 | if ($context instanceof \ReflectionMethod) { |
42 | - $name = $context->class . '::' . $name; |
|
42 | + $name = $context->class.'::'.$name; |
|
43 | 43 | } |
44 | 44 | |
45 | 45 | parent::__construct("Unable to resolve '{$parameter->name}' argument in '{$name}'."); |
@@ -324,7 +324,7 @@ discard block |
||
324 | 324 | { |
325 | 325 | $statement = ''; |
326 | 326 | foreach ($joinTokens as $table => $join) { |
327 | - $statement .= "\n" . $join['type'] . ' JOIN ' . $this->quote($table, true); |
|
327 | + $statement .= "\n".$join['type'].' JOIN '.$this->quote($table, true); |
|
328 | 328 | $statement .= $this->optional("\n ON", $this->compileWhere($join['on'])); |
329 | 329 | } |
330 | 330 | |
@@ -363,7 +363,7 @@ discard block |
||
363 | 363 | { |
364 | 364 | $result = []; |
365 | 365 | foreach ($ordering as $order) { |
366 | - $result[] = $this->quote($order[0]) . ' ' . strtoupper($order[1]); |
|
366 | + $result[] = $this->quote($order[0]).' '.strtoupper($order[1]); |
|
367 | 367 | } |
368 | 368 | |
369 | 369 | return join(', ', $result); |
@@ -525,7 +525,7 @@ discard block |
||
525 | 525 | $prefix .= ' '; |
526 | 526 | } |
527 | 527 | |
528 | - return $prefix . $expression . $postfix; |
|
528 | + return $prefix.$expression.$postfix; |
|
529 | 529 | } |
530 | 530 | |
531 | 531 | /** |
@@ -581,7 +581,7 @@ discard block |
||
581 | 581 | { |
582 | 582 | if ($context instanceof QueryBuilder) { |
583 | 583 | //Nested queries has to be wrapped with braces |
584 | - return '(' . $context->sqlStatement($this) . ')'; |
|
584 | + return '('.$context->sqlStatement($this).')'; |
|
585 | 585 | } |
586 | 586 | |
587 | 587 | if ($context instanceof ExpressionInterface) { |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | */ |
92 | 92 | protected function expression($identifier) |
93 | 93 | { |
94 | - return preg_replace_callback('/([a-z][0-9_a-z\.]*\(?)/i', function ($match) { |
|
94 | + return preg_replace_callback('/([a-z][0-9_a-z\.]*\(?)/i', function($match) { |
|
95 | 95 | $identifier = $match[1]; |
96 | 96 | |
97 | 97 | //Function name |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | */ |
114 | 114 | protected function aliasing($identifier, $alias, $table) |
115 | 115 | { |
116 | - $quoted = $this->quote($identifier, $table) . ' AS ' . $this->driver->identifier($alias); |
|
116 | + $quoted = $this->quote($identifier, $table).' AS '.$this->driver->identifier($alias); |
|
117 | 117 | |
118 | 118 | if ($table && strpos($identifier, '.') === false) { |
119 | 119 | //We have to apply operation post factum to prevent self aliasing (name AS name) |
@@ -148,12 +148,12 @@ discard block |
||
148 | 148 | protected function unpaired($identifier, $table) |
149 | 149 | { |
150 | 150 | if ($table && !isset($this->aliases[$identifier])) { |
151 | - if (!isset($this->aliases[$this->prefix . $identifier])) { |
|
151 | + if (!isset($this->aliases[$this->prefix.$identifier])) { |
|
152 | 152 | //Generating our alias |
153 | - $this->aliases[$this->prefix . $identifier] = $identifier; |
|
153 | + $this->aliases[$this->prefix.$identifier] = $identifier; |
|
154 | 154 | } |
155 | 155 | |
156 | - $identifier = $this->prefix . $identifier; |
|
156 | + $identifier = $this->prefix.$identifier; |
|
157 | 157 | } |
158 | 158 | |
159 | 159 | return $this->driver->identifier($identifier); |
@@ -262,7 +262,7 @@ discard block |
||
262 | 262 | $key = md5(serialize([$query, $parameters, $this->name, $this->prefix])); |
263 | 263 | } |
264 | 264 | |
265 | - $data = $store->remember($key, $lifetime, function () use ($query, $parameters) { |
|
265 | + $data = $store->remember($key, $lifetime, function() use ($query, $parameters) { |
|
266 | 266 | return $this->query($query, $parameters)->fetchAll(); |
267 | 267 | }); |
268 | 268 | |
@@ -378,7 +378,7 @@ discard block |
||
378 | 378 | */ |
379 | 379 | public function hasTable($name) |
380 | 380 | { |
381 | - return $this->driver->hasTable($this->prefix . $name); |
|
381 | + return $this->driver->hasTable($this->prefix.$name); |
|
382 | 382 | } |
383 | 383 | |
384 | 384 | /** |
@@ -200,7 +200,7 @@ |
||
200 | 200 | * @param string $class Class to be used to represent PDOStatement. |
201 | 201 | * @param array $args Class construction arguments, by default array of parameters. |
202 | 202 | * |
203 | - * @return ResultInterface|\PDOStatement|PDOQuery |
|
203 | + * @return \PDOStatement |
|
204 | 204 | */ |
205 | 205 | public function query($query, array $parameters = [], $class = null, array $args = []) |
206 | 206 | { |