Completed
Branch develop (eb6827)
by Tom
09:26 queued 03:38
created
build/phar/phar-timestamp.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,14 +23,14 @@
 block discarded – undo
23 23
 echo "Signature: ", $signature, " (from build.xml) \n";
24 24
 $const = strtoupper($signature);
25 25
 
26
-$sig  = constant("Phar::$const");
26
+$sig = constant("Phar::$const");
27 27
 echo "Phar Algo: ", var_export($sig, true), " (Phar::$const)\n";
28 28
 
29 29
 if (!is_file($file) || !is_readable($file)) {
30 30
     throw new RuntimeException(sprintf('Is not a file or not readable: %s', var_export($file, true)));
31 31
 }
32 32
 
33
-$timestamp = (int)`git log --format=format:%ct HEAD -1`;
33
+$timestamp = (int) `git log --format=format:%ct HEAD -1`;
34 34
 $threshold = 1343826993;
35 35
 if ($timestamp < $threshold) {
36 36
     $message = sprintf(
Please login to merge, or discard this patch.
src/N98/Magento/Command/System/Cron/AbstractCronCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
 
23 23
         /** @var $jobs AppendIterator */
24 24
         $jobs = array_reduce(
25
-            array('crontab/jobs', 'default/crontab/jobs'), function (AppendIterator $carry, $path) {
25
+            array('crontab/jobs', 'default/crontab/jobs'), function(AppendIterator $carry, $path) {
26 26
                 if ($jobConfig = Mage::getConfig()->getNode($path)) {
27 27
                     $carry->append(new \IteratorIterator($jobConfig->children()));
28 28
                 };
Please login to merge, or discard this patch.