@@ -73,7 +73,7 @@ |
||
73 | 73 | { |
74 | 74 | if ($this->isTagIncorrect($tag)) { |
75 | 75 | throw new \InvalidArgumentException( |
76 | - sprintf('DataProvider "%s" must specify the "index"'. |
|
76 | + sprintf('DataProvider "%s" must specify the "index"' . |
|
77 | 77 | ' and "type" attribute.', |
78 | 78 | $providerId |
79 | 79 | ) |
@@ -24,7 +24,7 @@ |
||
24 | 24 | |
25 | 25 | $loader = new Loader\YamlFileLoader( |
26 | 26 | $container, |
27 | - new FileLocator(__DIR__.'/../Resources/config') |
|
27 | + new FileLocator(__DIR__ . '/../Resources/config') |
|
28 | 28 | ); |
29 | 29 | |
30 | 30 | $loader->load('services.yml'); |
@@ -31,7 +31,7 @@ |
||
31 | 31 | { |
32 | 32 | $entries = $this->registry->get($index, $type); |
33 | 33 | |
34 | - foreach($entries as $entry) { |
|
34 | + foreach ($entries as $entry) { |
|
35 | 35 | $entry->getProvider()->run( |
36 | 36 | $client, |
37 | 37 | $entry->getIndex(), |
@@ -38,7 +38,7 @@ |
||
38 | 38 | { |
39 | 39 | return array_filter( |
40 | 40 | $this->entries, |
41 | - function ($entry) use ($index, $type) { |
|
41 | + function($entry) use ($index, $type) { |
|
42 | 42 | return $entry->match($index, $type); |
43 | 43 | } |
44 | 44 | ); |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | ->method('populate') |
70 | 70 | ->will( |
71 | 71 | $this->returnCallback( |
72 | - function () use ($provider) { |
|
72 | + function() use ($provider) { |
|
73 | 73 | $provider->index( |
74 | 74 | 'my_id', |
75 | 75 | ['foo' => 'bar'] |
@@ -102,8 +102,8 @@ discard block |
||
102 | 102 | ->method('populate') |
103 | 103 | ->will( |
104 | 104 | $this->returnCallback( |
105 | - function () use ($provider) { |
|
106 | - for($i = 0; $i < 1500; $i++) { |
|
105 | + function() use ($provider) { |
|
106 | + for ($i = 0; $i < 1500; $i++) { |
|
107 | 107 | $provider->index( |
108 | 108 | 'my_id', |
109 | 109 | ['foo' => 'bar'] |