Completed
Push — master ( 202f3c...15bdf1 )
by Tom
09:14 queued 04:46
created
src/N98/Magento/Command/System/Cron/AbstractCronCommand.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
     /**
56 56
      * Get job configuration from XML and database. Expression priority is given to the database.
57 57
      *
58
-     * @return Traversable|Mage_Core_Model_Config_Element[]
58
+     * @return AppendIterator
59 59
      */
60 60
     private function getJobConfigElements()
61 61
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
         $expr = null;
41 41
 
42 42
         if (isset($job->schedule->config_path)) {
43
-            $expr = Mage::getStoreConfig((string)$job->schedule->config_path);
43
+            $expr = Mage::getStoreConfig((string) $job->schedule->config_path);
44 44
         } elseif (isset($job->schedule->cron_expr)) {
45 45
             $expr = $job->schedule->cron_expr;
46 46
         }
Please login to merge, or discard this patch.
src/N98/Magento/Command/System/Setup/CompareVersionsCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 block discarded – undo
84 84
             }
85 85
 
86 86
             if ($input->getOption('errors-only')) {
87
-                $table = array_filter($table, function($row){
87
+                $table = array_filter($table, function($row) {
88 88
                     return ($row['Status'] === 'Error');
89 89
                 });
90 90
             }
Please login to merge, or discard this patch.