Passed
Branch master (04fbc2)
by Sand
02:02
created
SandCage.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
 	protected $status;
20 20
 	protected $response;
21 21
 
22
-	public function __construct($sandcage_api_key=null) {
22
+	public function __construct($sandcage_api_key = null) {
23 23
 
24 24
 		if (!is_null($sandcage_api_key)) {
25 25
 			$this->sandcage_api_key = $sandcage_api_key;
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
 	* @param array $payload values to send
35 35
 	* @param string $callback_endpoint to send the callback to
36 36
 	*/ 
37
-	public function scheduleFiles($payload, $callback_endpoint='') {
37
+	public function scheduleFiles($payload, $callback_endpoint = '') {
38 38
 
39 39
 		$this->post = true;
40 40
 		$this->post_fields = array('key'=>$this->sandcage_api_key) + $payload;
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
 	* @param array $payload values to send
53 53
 	* @param string $callback_endpoint to send the callback to
54 54
 	*/ 
55
-	public function destroyFiles($payload, $callback_endpoint='') {
55
+	public function destroyFiles($payload, $callback_endpoint = '') {
56 56
 
57 57
 		$this->post = true;
58 58
 		$this->post_fields = array('key'=>$this->sandcage_api_key) + $payload;
Please login to merge, or discard this patch.