Skip to content

Commit b57f00d

Browse files
committed
Fixed spacing.
1 parent fecf2b5 commit b57f00d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Components/JoinKeyword.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ public static function build($component, array $options = array())
160160
$ret = array();
161161
foreach ($component as $c) {
162162
$ret[] = (($c->type === 'JOIN') ? 'JOIN ' : ($c->type . ' JOIN '))
163-
. $c->expr . ' ON ' . Condition::build($c->on);
163+
. $c->expr . ' ON ' . Condition::build($c->on);
164164
}
165165
return implode(' ', $ret);
166166
}

tools/ContextGenerator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ public static function readWords(array $files)
123123
$type = 1;
124124
$value = trim($words[$i]);
125125

126-
// Reserved keyword.
126+
// Reserved keyword.
127127
if (strstr($value, '(R)') !== false) {
128128
$type |= 2;
129129
$value = trim(str_replace('(R)', '', $value));

0 commit comments

Comments
 (0)