Passed
Push — master ( 1099cb...d76599 )
by Patrick
03:16
created
src/ForecastAutomation/Kernel/Locator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
     {
15 15
         // bla, bla testen
16 16
         echo "Rufe die Objektmethode '$name' "
17
-            . implode(', ', $arguments). "\n";
17
+            . implode(', ', $arguments) . "\n";
18 18
     }
19 19
 
20 20
     public function getFacade():object {
Please login to merge, or discard this patch.
src/ForecastAutomation/JiraClient/Shared/Plugin/JiraActivityPlugin.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
                     '%s: %s - %s',
31 31
                     self::COMMENT_IDENTIFIER,
32 32
                     $jiraTicketNumber,
33
-                    sprintf('%s...',substr(preg_replace('/\[[^)]+\]/', '', $jiraComment[0]->body), 0, 60))
33
+                    sprintf('%s...', substr(preg_replace('/\[[^)]+\]/', '', $jiraComment[0]->body), 0, 60))
34 34
                 ),
35 35
                 new \DateTime($jiraComment[0]->updated),
36 36
                 self::ACTIVITY_DURATION * count($jiraComment)
Please login to merge, or discard this patch.
src/ForecastAutomation/ForecastDataImport/ForecastDataImportFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 class ForecastDataImportFactory extends AbstractFactory
12 12
 {
13 13
     public function createForecastDataImportProcess(): ForecastDataImportProcess {
14
-        return new ForecastDataImportProcess($this->getActivityFacade(),$this->createForecastActivityWriter());
14
+        return new ForecastDataImportProcess($this->getActivityFacade(), $this->createForecastActivityWriter());
15 15
     }
16 16
     public function getActivityFacade(): ActivityFacade {
17 17
         return $this->getProvidedDependency(ForecastDataImportDependencyProvider::ACTIVITY_FACADE);
Please login to merge, or discard this patch.
tests/ForecastAutomationTests/ForecastClient/ForecastClientFacadeTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace ForecastAutomationTests\ForecastClient;
4 4
 
@@ -33,14 +33,14 @@  discard block
 block discarded – undo
33 33
             );
34 34
 
35 35
         $forecastClientFactoryMock = $this->getMockBuilder(ForecastClientFactory::class)
36
-            ->onlyMethods(['createClient','createForecastConfigDto'])
36
+            ->onlyMethods(['createClient', 'createForecastConfigDto'])
37 37
             ->getMock();
38 38
         $forecastClientFactoryMock
39 39
             ->method('createClient')
40 40
             ->willReturn($clientMock);
41 41
 
42 42
         $forecastClientFactoryMock->method('createForecastConfigDto')
43
-            ->willReturn(new ForecastConfigDto('','','','',''));
43
+            ->willReturn(new ForecastConfigDto('', '', '', '', ''));
44 44
 
45 45
         $forecastClientFacadeMock = $this->getMockBuilder(ForecastClientFacade::class)
46 46
             ->onlyMethods(['getFactory'])
Please login to merge, or discard this patch.
tests/ForecastAutomationTests/Activity/ActivityFacadeTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace ForecastAutomationTests\Activity;
4 4
 
Please login to merge, or discard this patch.