Passed
Branch master (1796c3)
by Nils
03:56
created
Category
src/DependencyInjection/TorakelDatabaseExtension.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
         $configuration = new Configuration();
23 23
         $config = $this->processConfiguration($configuration, $configs);
24 24
 
25
-        $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
25
+        $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
26 26
         $loader->load('services.yml');
27 27
     }
28 28
 }
Please login to merge, or discard this patch.
src/Entity/Country.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -81,9 +81,9 @@
 block discarded – undo
81 81
     protected $updatedAt;
82 82
 
83 83
     public function __construct() {
84
-        $this->coaches= new ArrayCollection();
85
-        $this->competitions= new ArrayCollection();
86
-        $this->cities= new ArrayCollection();
84
+        $this->coaches = new ArrayCollection();
85
+        $this->competitions = new ArrayCollection();
86
+        $this->cities = new ArrayCollection();
87 87
         $this->referees = new ArrayCollection();
88 88
     }
89 89
 
Please login to merge, or discard this patch.