Passed
Push — master ( f9a48a...945dc8 )
by Mike
03:01
created
src/EntryPoint/Abstracts/GET/AbstractGetEntryPoint.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.
src/EntryPoint/Abstracts/POST/AbstractPostEntryPoint.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.
src/EntryPoint/Abstracts/DELETE/AbstractDeleteEntryPoint.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.
src/EntryPoint/Abstracts/PUT/AbstractPutEntryPoint.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.