Completed
Push — 4.0 ( 103006...239d44 )
by Ryo
05:55
created
codeception/acceptance/EA10PluginCest.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -205,11 +205,18 @@
 block discarded – undo
205 205
         $I->assertNull($Plugin);
206 206
     }
207 207
 
208
+    /**
209
+     * @param string $tableName
210
+     */
208 211
     private function tableExists($tableName)
209 212
     {
210 213
         return $this->conn->executeQuery("SELECT count(*) AS count FROM information_schema.columns WHERE table_name = '${tableName}';")->fetch()['count'] > 0;
211 214
     }
212 215
 
216
+    /**
217
+     * @param string $tableName
218
+     * @param string $columnName
219
+     */
213 220
     private function columnExists($tableName, $columnName)
214 221
     {
215 222
         return $this->conn->executeQuery("SELECT count(*) AS count FROM information_schema.columns WHERE table_name = '${tableName}' AND column_name = '${columnName}';")->fetch()['count'] == 1;
Please login to merge, or discard this patch.
src/Eccube/Service/Composer/ComposerProcessService.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
      *
82 82
      * @throws PluginException
83 83
      *
84
-     * @param string $command
84
+     * @param string[] $commands
85 85
      */
86 86
     public function runCommand($commands, $output = null, $init = true)
87 87
     {
Please login to merge, or discard this patch.