Test Failed
Push — master ( 923481...f8ad64 )
by Gerrit
02:41
created
php/Lexing/SqlTokenizerClass.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
     /** @param array<string, AbstractSqlToken> $keywords */
23 23
     public function __construct(array $keywords)
24 24
     {
25
-        array_map(function ($keyword) {
25
+        array_map(function($keyword) {
26 26
             /** @psalm-suppress RedundantConditionGivenDocblockType */
27 27
             Assert::isInstanceOf($keyword, AbstractSqlToken::class);
28 28
         }, $keywords);
@@ -105,12 +105,12 @@  discard block
 block discarded – undo
105 105
             'ON' => SqlToken::ON(),
106 106
             'IN' => SqlToken::IN(),
107 107
             'IS' => SqlToken::IS(),
108
-            'AND' => SqlToken::AND(),
108
+            'AND' => SqlToken:: AND (),
109 109
             'ORDER' => SqlToken::ORDER(),
110 110
             'BY' => SqlToken::BY(),
111 111
             'ASC' => SqlToken::ASC(),
112 112
             'DESC' => SqlToken::DESC(),
113
-            'OR' => SqlToken::OR(),
113
+            'OR' => SqlToken:: OR (),
114 114
             'LIKE' => SqlToken::LIKE(),
115 115
             'USING' => SqlToken::USING(),
116 116
             'WHERE' => SqlToken::WHERE(),
Please login to merge, or discard this patch.
php/Parsing/AbstractSyntaxTree/SqlAstOrderBy.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
     public function hash(): string
107 107
     {
108 108
         /** @var array<string> $hashes */
109
-        $hashes = array_map(function (SqlAstNode $child) {
109
+        $hashes = array_map(function(SqlAstNode $child) {
110 110
             return $child->hash();
111 111
         }, $this->children());
112 112
 
Please login to merge, or discard this patch.