Completed
Push — 2.x ( 158962...24ecc9 )
by Delete
08:18 queued 05:42
created
src/Parser/Sqlite/Writer.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -342,7 +342,7 @@
 block discarded – undo
342 342
     /**
343 343
      * @param array $properties
344 344
      *
345
-     * @return int|null
345
+     * @return string|null
346 346
      * @throws ParserRuntimeException
347 347
      */
348 348
     protected function getParentPatternId(array &$properties)
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -505,7 +505,7 @@
 block discarded – undo
505 505
         asort($keywords);
506 506
 
507 507
         $keywordId = 1;
508
-        foreach($keywords as $keywordValue => $keywordCount) {
508
+        foreach ($keywords as $keywordValue => $keywordCount) {
509 509
             // Do NOT use "CREATE TABLE ... AS" here, because this would automatically add an extra id column,
510 510
             // which requires additional space
511 511
             $adapter->exec(
Please login to merge, or discard this patch.
src/Parser/Sqlite/Adapter/Sqlite3PreparedStatement.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
     }
27 27
 
28 28
     /**
29
-     * @return \SQLite3Stmt
29
+     * @return \PDOStatement
30 30
      */
31 31
     protected function getStatement()
32 32
     {
Please login to merge, or discard this patch.
src/Formatter/Formatter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -116,7 +116,7 @@
 block discarded – undo
116 116
         $newKey = $key;
117 117
         if (($this->getOptions() & self::KEY_LOWER) > 0) {
118 118
             $newKey = strtolower($key);
119
-        } elseif(($this->getOptions() & self::KEY_UPPER) > 0) {
119
+        } elseif (($this->getOptions() & self::KEY_UPPER) > 0) {
120 120
             $newKey = strtoupper($key);
121 121
         }
122 122
 
Please login to merge, or discard this patch.
src/Formatter/PhpGetBrowser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
             );
28 28
         }
29 29
 
30
-        $options = self::KEY_LOWER | self::VALUE_BOOLEAN_TO_STRING  | self::VALUE_REG_EXP_LOWER;
30
+        $options = self::KEY_LOWER | self::VALUE_BOOLEAN_TO_STRING | self::VALUE_REG_EXP_LOWER;
31 31
         if ($returnArray) {
32 32
             $options |= self::RETURN_ARRAY;
33 33
         } else {
Please login to merge, or discard this patch.
src/Parser/Sqlite/Reader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@
 block discarded – undo
97 97
      */
98 98
     protected function getDatabasePath()
99 99
     {
100
-        $databasePath =  $this->getDataDirectory() . DIRECTORY_SEPARATOR . $this->getDatabaseFileName();
100
+        $databasePath = $this->getDataDirectory() . DIRECTORY_SEPARATOR . $this->getDatabaseFileName();
101 101
 
102 102
         if (!$this->isFileReadable($databasePath)) {
103 103
             if (!file_exists($databasePath)) {
Please login to merge, or discard this patch.
src/Parser/Sqlite/Parser.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
76 76
     }
77 77
 
78 78
     /**
79
-     * @return SourceInterface
79
+     * @return AdapterInterface
80 80
      * @throws InvalidArgumentException
81 81
      * @throws UnexpectedValueException
82 82
      */
Please login to merge, or discard this patch.