Skip to content
This repository was archived by the owner on Sep 20, 2021. It is now read-only.

Commit 140091e

Browse files
committed
Fix CS.
1 parent 8ee9622 commit 140091e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Query/SelectCore.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ protected function _join($type, $source)
335335
$key = key($this->_from);
336336
$value = current($this->_from);
337337
$this->_from[$key] =
338-
$this->enclose($value) .' ' .
338+
$this->enclose($value) . ' ' .
339339
$type . ' ' .
340340
$this->enclose($source);
341341

Test/Unit/Query/EncloseIdentifier.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ public function case_set_symbol()
110110
->then
111111
->string($result)
112112
->isEqualTo('SELECT [a], [b] FROM [foo]');
113-
}
113+
}
114114

115115
public function case_select()
116116
{

0 commit comments

Comments
 (0)