@@ -27,7 +27,7 @@ |
||
27 | 27 | curl_setopt($ch, \CURLOPT_URL, $this->webhookUrl); |
28 | 28 | |
29 | 29 | curl_setopt($ch, \CURLOPT_POST, 1); |
30 | - curl_setopt($ch, \CURLOPT_POSTFIELDS, 'payload=' .json_encode($payload)); |
|
30 | + curl_setopt($ch, \CURLOPT_POSTFIELDS, 'payload='.json_encode($payload)); |
|
31 | 31 | |
32 | 32 | $result = curl_exec($ch); |
33 | 33 |
@@ -77,7 +77,7 @@ |
||
77 | 77 | ->getMock(); |
78 | 78 | $this->changeInspector->expects($this->once()) |
79 | 79 | ->method('getChangesFromDeployment') |
80 | - ->with($this->callback(function ($subject) { |
|
80 | + ->with($this->callback(function($subject) { |
|
81 | 81 | return $subject == $this->deployment; |
82 | 82 | })) |
83 | 83 | ->will($this->returnValue($changes)); |