@@ -11,7 +11,7 @@ |
||
| 11 | 11 | |
| 12 | 12 | abstract class AbstractGetEntryPoint extends AbstractEntryPoint { |
| 13 | 13 | |
| 14 | - public function __construct($url, array $options = array()) { |
|
| 14 | + public function __construct($url, array $options = array()){ |
|
| 15 | 15 | $this->setRequest(new GET()); |
| 16 | 16 | $this->setResponse(new JSON($this->Request->getCurlObject())); |
| 17 | 17 | parent::__construct($url, $options); |
@@ -11,7 +11,7 @@ |
||
| 11 | 11 | |
| 12 | 12 | abstract class AbstractPostEntryPoint extends AbstractEntryPoint { |
| 13 | 13 | |
| 14 | - public function __construct($url, array $options = array()) { |
|
| 14 | + public function __construct($url, array $options = array()){ |
|
| 15 | 15 | $this->setRequest(new POST()); |
| 16 | 16 | $this->setResponse(new JSON($this->Request->getCurlObject())); |
| 17 | 17 | parent::__construct($url, $options); |
@@ -11,7 +11,7 @@ |
||
| 11 | 11 | |
| 12 | 12 | abstract class AbstractDeleteEntryPoint extends AbstractEntryPoint { |
| 13 | 13 | |
| 14 | - public function __construct($url, array $options = array()) { |
|
| 14 | + public function __construct($url, array $options = array()){ |
|
| 15 | 15 | $this->setRequest(new DELETE()); |
| 16 | 16 | $this->setResponse(new JSON($this->getRequest()->getCurlObject())); |
| 17 | 17 | parent::__construct($url, $options); |
@@ -11,7 +11,7 @@ |
||
| 11 | 11 | |
| 12 | 12 | abstract class AbstractPutEntryPoint extends AbstractEntryPoint { |
| 13 | 13 | |
| 14 | - public function __construct($url, array $options = array()) { |
|
| 14 | + public function __construct($url, array $options = array()){ |
|
| 15 | 15 | $this->setRequest(new PUT()); |
| 16 | 16 | $this->setResponse(new JSON($this->Request->getCurlObject())); |
| 17 | 17 | parent::__construct($url, $options); |