Completed
Push — master ( 44e036...1829b3 )
by Julien
18s queued 11s
created
src/Request.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -51,16 +51,16 @@  discard block
 block discarded – undo
51 51
     public function getFormValues(): array
52 52
     {
53 53
         $values = [];
54
-        if (! empty($this->resultFilename)) {
54
+        if (!empty($this->resultFilename)) {
55 55
             $values[self::RESULT_FILENAME] = $this->resultFilename;
56 56
         }
57 57
         if ($this->waitTimeout !== null) {
58 58
             $values[self::WAIT_TIMEOUT] = $this->waitTimeout;
59 59
         }
60
-        if (! empty($this->webhookURL)) {
60
+        if (!empty($this->webhookURL)) {
61 61
             $values[self::WEBHOOK_URL] = $this->webhookURL;
62 62
         }
63
-        if (! empty($this->webhookURLTimeout)) {
63
+        if (!empty($this->webhookURLTimeout)) {
64 64
             $values[self::WEBHOOK_URL_TIMEOUT] = $this->webhookURLTimeout;
65 65
         }
66 66
 
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 
70 70
     public function hasWebhook(): bool
71 71
     {
72
-        return ! empty($this->webhookURL);
72
+        return !empty($this->webhookURL);
73 73
     }
74 74
 
75 75
     /**
Please login to merge, or discard this patch.