@@ -51,16 +51,16 @@ discard block |
||
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 |
||
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 | /** |