@@ -49,11 +49,11 @@ discard block |
||
49 | 49 | */ |
50 | 50 | public function create(array $data = []) |
51 | 51 | { |
52 | - if (! isset($data['tileset'])) { |
|
52 | + if (!isset($data['tileset'])) { |
|
53 | 53 | throw new RunTimeException('Tileset required'); |
54 | 54 | } |
55 | 55 | |
56 | - if (! isset($data['url']) && ! isset($data['dataset'])) { |
|
56 | + if (!isset($data['url']) && !isset($data['dataset'])) { |
|
57 | 57 | throw new RunTimeException('Dataset or URL required'); |
58 | 58 | } |
59 | 59 | |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | */ |
80 | 80 | public function get() |
81 | 81 | { |
82 | - if (! $this->upload_id) { |
|
82 | + if (!$this->upload_id) { |
|
83 | 83 | throw new RunTimeException('Upload ID required'); |
84 | 84 | } |
85 | 85 | |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | */ |
95 | 95 | public function delete() |
96 | 96 | { |
97 | - if (! $this->upload_id) { |
|
97 | + if (!$this->upload_id) { |
|
98 | 98 | throw new RunTimeException('Upload ID required'); |
99 | 99 | } |
100 | 100 |