@@ -9,14 +9,14 @@ |
||
| 9 | 9 | |
| 10 | 10 | abstract class AbstractDeleteEntryPoint extends AbstractEntryPoint { |
| 11 | 11 | |
| 12 | - public function __construct($url, array $options = array()) { |
|
| 12 | + public function __construct($url, array $options = array()){ |
|
| 13 | 13 | $this->setRequest(new DELETE()); |
| 14 | 14 | parent::__construct($url, $options); |
| 15 | 15 | } |
| 16 | 16 | |
| 17 | - public function execute($data = NULL) { |
|
| 17 | + public function execute($data = NULL){ |
|
| 18 | 18 | parent::execute($data); |
| 19 | - $this->setResponse(new JSON($this->Request->getResponse(),$this->Request->getCurlObject())); |
|
| 19 | + $this->setResponse(new JSON($this->Request->getResponse(), $this->Request->getCurlObject())); |
|
| 20 | 20 | return $this; |
| 21 | 21 | } |
| 22 | 22 | |