Completed
Push — master ( 72b1a6...1258c2 )
by Piotr
02:11
created
src/EsiParser.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -11,18 +11,18 @@
 block discarded – undo
11 11
 
12 12
     private $matches = null;
13 13
 
14
-    public function __construct(?string $data = '')
14
+    public function __construct(? string $data = '')
15 15
     {
16 16
         $this->data = $data;
17 17
     }
18 18
 
19
-    public function parse(?string $data = null) : int
19
+    public function parse(? string $data = null) : int
20 20
     {
21 21
         if (!empty($data)) {
22 22
             $this->data = $data;
23 23
         }
24 24
 
25
-        $found = preg_match_all('/<esi:include [^>]*\\/>/ims',  $this->data, $this->matches);
25
+        $found = preg_match_all('/<esi:include [^>]*\\/>/ims', $this->data, $this->matches);
26 26
 
27 27
         return $found;
28 28
     }
Please login to merge, or discard this patch.
src/Validator/OptionsValidator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,11 +21,11 @@
 block discarded – undo
21 21
 
22 22
     public function validate(): bool
23 23
     {
24
-        if (array_key_exists('concurrency', $this->config) && (int)$this->config['concurrency'] < 1) {
24
+        if (array_key_exists('concurrency', $this->config) && (int)$this->config['concurrency']<1) {
25 25
             throw new InvalidOptionValueException('Concurrency must be greater than 0.');
26 26
         }
27 27
 
28
-        if (array_key_exists('timeout', $this->config) && (int)$this->config['timeout'] <=0 ) {
28
+        if (array_key_exists('timeout', $this->config) && (int)$this->config['timeout']<=0) {
29 29
             throw new InvalidOptionValueException('Timeout option must greater than 0.');
30 30
         }
31 31
 
Please login to merge, or discard this patch.
src/EsiTentacles.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
 
71 71
     private function createRequestPromises()
72 72
     {
73
-        return (function (array $esiRequests) {
73
+        return (function(array $esiRequests) {
74 74
             $client = new Client($this->clientOptions());
75 75
             /** @var EsiRequest $esiRequest */
76 76
             foreach ($esiRequests as $esiRequest) {
@@ -104,9 +104,9 @@  discard block
 block discarded – undo
104 104
             'cache_prefix' => 'esi:include',
105 105
             'cache_ttl' => 3600,
106 106
             'request_options' => [],
107
-            'fulfilled' => function (string &$data, array $esiRequests)
107
+            'fulfilled' => function(string&$data, array $esiRequests)
108 108
             {
109
-                return (function (Response $response, int $index) use (&$data, $esiRequests)
109
+                return (function(Response $response, int $index) use (&$data, $esiRequests)
110 110
                 {
111 111
                     /** @var EsiRequest $esiRequest */
112 112
                     $esiRequest = $esiRequests[$index];
@@ -131,8 +131,8 @@  discard block
 block discarded – undo
131 131
                     }
132 132
                 });
133 133
             },
134
-            'rejected' => function (string &$data, array $esiRequests) {
135
-                return (function (\Exception $reason, int $index) use (&$data, $esiRequests) {
134
+            'rejected' => function(string&$data, array $esiRequests) {
135
+                return (function(\Exception $reason, int $index) use (&$data, $esiRequests) {
136 136
 
137 137
                     $this->logger->error(
138 138
                         'Could not fetch ['.$esiRequests[$index]->getSrc().']. Reason: '.$reason->getMessage()
Please login to merge, or discard this patch.