Skip to content

Commit 73f02b3

Browse files
committed
Fixed phpcs and phpstan issues
1 parent 19c646b commit 73f02b3

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/Context.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -620,7 +620,7 @@ public static function getIdentifierQuote()
620620
* Function verifies that given SQL Mode constant is currently set
621621
*
622622
* @return boolean false on empty param, true/false on given constant/int value
623-
* @param $flag int for example Context::SQL_MODE_ANSI_QUOTES
623+
* @param int $flag for example Context::SQL_MODE_ANSI_QUOTES
624624
*/
625625
public static function hasMode($flag = null)
626626
{

src/Utils/CLI.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public function parseHighlight()
5151
'help',
5252
'query:',
5353
'format:',
54-
'ansi'
54+
'ansi',
5555
];
5656
$params = $this->getopt(
5757
'hq:f:a',
@@ -125,7 +125,7 @@ public function parseLint()
125125
'help',
126126
'query:',
127127
'context:',
128-
'ansi'
128+
'ansi',
129129
];
130130
$params = $this->getopt(
131131
'hq:c:a',
@@ -188,7 +188,7 @@ public function parseTokenize()
188188
$longopts = [
189189
'help',
190190
'query:',
191-
'ansi'
191+
'ansi',
192192
];
193193
$params = $this->getopt(
194194
'hq:a',

0 commit comments

Comments
 (0)