Passed
Branch master (6445ef)
by Fabian
04:20
created
Category
autoload.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
  * Implementation based on https://www.php-fig.org/psr/psr-4/examples/
7 7
  */
8 8
 
9
-spl_autoload_register(function ($class) {
9
+spl_autoload_register(function($class) {
10 10
 
11 11
     $prefix = 'IntegerNet\\DeployerTimer\\';
12 12
     $base_dir = __DIR__ . '/src/';
Please login to merge, or discard this patch.
src/ResultTaskFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
     public function createCsvResultTask($fileName): string
27 27
     {
28 28
         $taskName = uniqid('timer_result-', true);
29
-        $taskBody = function () use ($fileName) {
29
+        $taskBody = function() use ($fileName) {
30 30
             file_put_contents($fileName, $this->timer->resultsAsCsv());
31 31
         };
32 32
         $this->deployer->tasks->set($taskName, new Task($taskName, $taskBody));
Please login to merge, or discard this patch.