Skip to content

Commit 102c7ca

Browse files
committed
Fixed coding style.
1 parent 2bcf6ba commit 102c7ca

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/Components/OptionsArray.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,8 @@ public static function parse(Parser $parser, TokensList $list, array $options =
146146
sprintf(
147147
__('This option conflicts with "%1$s".'),
148148
is_array($ret->options[$lastOptionId])
149-
? $ret->options[$lastOptionId]['name']
150-
: $ret->options[$lastOptionId]
149+
? $ret->options[$lastOptionId]['name']
150+
: $ret->options[$lastOptionId]
151151
),
152152
$token
153153
);

src/Statements/InsertStatement.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,8 @@ class InsertStatement extends Statement
8484
/**
8585
* @return string
8686
*/
87-
public function build() {
87+
public function build()
88+
{
8889
return 'INSERT ' . $this->options
8990
. ' INTO ' . $this->into
9091
. ' VALUES ' . ArrayObj::build($this->values);

0 commit comments

Comments
 (0)