Completed
Branch master (8400a7)
by Piotr
02:05
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/Validator/EsiAttributeValidator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
         }
24 24
 
25 25
         if (isset($this->attributes['TIMEOUT'])) {
26
-            if ((float)$this->attributes['TIMEOUT'] <=0 ) {
26
+            if ((float)$this->attributes['TIMEOUT']<=0) {
27 27
                 throw new EsiTagParseException("Timeout must be greater then 0.");
28 28
             }
29 29
         }
Please login to merge, or discard this patch.
examples/custom_reject_handler.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -7,8 +7,8 @@
 block discarded – undo
7 7
  * @param \CrazyGoat\Octophpus\EsiRequest[] $esiRequests
8 8
  * @return Closure
9 9
  */
10
-$reject_closure = function (string &$data, array $esiRequests) {
11
-    return (function (\Exception $reason, int $index) use (&$data, $esiRequests) {
10
+$reject_closure = function(string&$data, array $esiRequests) {
11
+    return (function(\Exception $reason, int $index) use (&$data, $esiRequests) {
12 12
         echo "Unable to fetch request (".$esiRequests[$index]->getSrc().") reason : ".$reason->getMessage();
13 13
         $reason;
14 14
     });
Please login to merge, or discard this patch.
examples/cache.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,8 +12,8 @@
 block discarded – undo
12 12
 
13 13
 $start = time();
14 14
 $esiInclude->decorate($text);
15
-echo "first request took ".(time()-$start)." seconds\n";
15
+echo "first request took ".(time() - $start)." seconds\n";
16 16
 
17 17
 $start = time();
18 18
 $esiInclude->decorate($text);
19
-echo "second request took ".(time()-$start)." seconds\n";
20 19
\ No newline at end of file
20
+echo "second request took ".(time() - $start)." seconds\n";
21 21
\ No newline at end of file
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.