@@ -22,7 +22,7 @@ |
||
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 | } |
@@ -81,9 +81,9 @@ |
||
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 |