Passed
Push — master ( fc71f1...2fa0f4 )
by Tom
03:17
created
src/NoaaCapAlerts/Dependencies.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -19,27 +19,27 @@
 block discarded – undo
19 19
 
20 20
         $this['LocalFile'] = getenv("NoaaLocalFilePath");
21 21
 
22
-        $this['NoaaAlertManager'] = function ($c) {
22
+        $this['NoaaAlertManager'] = function($c) {
23 23
             return new NoaaAlertFactory($c['XmlProvider'], $c['IndexParser'], $c['PolygonFactory']);
24 24
         };
25 25
 
26
-        $this['XmlProvider'] = function ($c) {
26
+        $this['XmlProvider'] = function($c) {
27 27
             return $c['XmlProviderFactory']->getXmlProvider();
28 28
         };
29 29
 
30
-        $this['XmlProviderFactory'] = function ($c) {
30
+        $this['XmlProviderFactory'] = function($c) {
31 31
             return new XmlProviderFactory($c['LocalFile']);
32 32
         };
33 33
 
34
-        $this['PolygonFactory'] = function ($c) {
34
+        $this['PolygonFactory'] = function($c) {
35 35
             return new PolygonFactory();
36 36
         };
37 37
 
38
-        $this['IndexParser'] = function ($c) {
38
+        $this['IndexParser'] = function($c) {
39 39
             return new NoaaIndexParser($c['XmlParser']);
40 40
         };
41 41
 
42
-        $this['XmlParser'] = function ($c) {
42
+        $this['XmlParser'] = function($c) {
43 43
             return new XmlParser();
44 44
         };
45 45
     }
Please login to merge, or discard this patch.