Completed
Push — master ( e392b8...48a2ec )
by Eric
02:42
created
src/Platforms/View/Rest.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -79,16 +79,16 @@  discard block
 block discarded – undo
79 79
     public function renderOutput(\Nocarrier\Hal $hal)
80 80
     {
81 81
         $this->sendHeaders();
82
-        if($this->getSystemErrors())
82
+        if ($this->getSystemErrors())
83 83
         {
84 84
             $system_errors = array();
85
-            foreach($this->getSystemErrors() As $key => $value) {
85
+            foreach ($this->getSystemErrors() As $key => $value) {
86 86
                 $system_errors[$key] = $this->m62Lang($key);
87 87
             }
88 88
             $hal->setData($hal->getData() + array('_system_errors' => $system_errors));
89 89
     
90 90
         }
91
-        if(isset($_SERVER['HTTP_ACCEPT_ENCODING']) && strpos(strtolower($_SERVER['HTTP_ACCEPT_ENCODING']), 'xml') !== false)
91
+        if (isset($_SERVER['HTTP_ACCEPT_ENCODING']) && strpos(strtolower($_SERVER['HTTP_ACCEPT_ENCODING']), 'xml') !== false)
92 92
         {
93 93
             header('Content-Type: application/hal+xml');
94 94
             return $hal->asXml(true);
@@ -118,13 +118,13 @@  discard block
 block discarded – undo
118 118
         $problem = $this->getApiProblem($title, $type);
119 119
         $problem->setStatus($code);
120 120
         $problem->setDetail($detail);
121
-        if($errors)
121
+        if ($errors)
122 122
         {
123 123
             $problem['errors'] = $errors;
124 124
         }
125 125
     
126 126
         $this->sendHeaders();
127
-        if(isset($_SERVER['HTTP_ACCEPT_ENCODING']) && strpos(strtolower($_SERVER['HTTP_ACCEPT_ENCODING']), 'xml') !== false)
127
+        if (isset($_SERVER['HTTP_ACCEPT_ENCODING']) && strpos(strtolower($_SERVER['HTTP_ACCEPT_ENCODING']), 'xml') !== false)
128 128
         {
129 129
             header('Content-Type: application/problem+xml');
130 130
             return $problem->asXml(true);
Please login to merge, or discard this patch.
src/Platforms/Controllers/Rest.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
                      ->setMethod($_SERVER['REQUEST_METHOD'])
93 93
                      ->auth($this->settings['api_key'], $this->settings['api_secret']);
94 94
         
95
-        if(!$auth) {
95
+        if (!$auth) {
96 96
             return false;
97 97
         }
98 98
         
@@ -105,10 +105,10 @@  discard block
 block discarded – undo
105 105
      */
106 106
     public function getBodyData()
107 107
     {
108
-        if(is_null($this->body_data)) 
108
+        if (is_null($this->body_data)) 
109 109
         {
110 110
             $data = json_decode(file_get_contents("php://input"), true);
111
-            if(!$data)
111
+            if (!$data)
112 112
             {
113 113
                 $data = array();
114 114
             }
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
     public function getRequestHeaders($auth = true)
127 127
     {
128 128
         $headers = \getallheaders();
129
-        if($auth) {
129
+        if ($auth) {
130 130
             $hmac = $this->getRest()->getServer()->getHmac();
131 131
             $return = array(
132 132
                 $hmac->getPrefix().'timestamp' => (isset($headers[$hmac->getPrefix().'timestamp']) ? $headers[$hmac->getPrefix().'timestamp'] : ''),
Please login to merge, or discard this patch.
src/Rest/Hmac.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -62,14 +62,14 @@
 block discarded – undo
62 62
         //make sure we have the require attributes
63 63
         $required = array('timestamp');
64 64
         $data = $this->getData();
65
-        foreach($required AS $require) {
66
-            if(!isset($data[$this->prefix.$require])) {
65
+        foreach ($required AS $require) {
66
+            if (!isset($data[$this->prefix.$require])) {
67 67
                 return false;
68 68
             }
69 69
         }
70 70
         
71 71
         //looks good, now let's process it
72
-        $auth  = new Auth($this->getMethod(), $this->getRoute(), $this->getData(), [
72
+        $auth = new Auth($this->getMethod(), $this->getRoute(), $this->getData(), [
73 73
             new CheckKey,
74 74
             new CheckVersion,
75 75
             new CheckTimestamp,
Please login to merge, or discard this patch.
src/Rest/AbstractServer.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -65,13 +65,13 @@
 block discarded – undo
65 65
      */
66 66
     public function getVersion($version_key)
67 67
     {
68
-        if(is_null($this->version))
68
+        if (is_null($this->version))
69 69
         {
70 70
             //determine the version
71 71
             $headers = \getallheaders();
72
-            if(isset($headers[$version_key]) && is_numeric($headers[$version_key]) && in_array($headers[$version_key], $this->api_versions))
72
+            if (isset($headers[$version_key]) && is_numeric($headers[$version_key]) && in_array($headers[$version_key], $this->api_versions))
73 73
             {
74
-                $version = 'V'.str_replace('.','_',$headers[$version_key]);
74
+                $version = 'V'.str_replace('.', '_', $headers[$version_key]);
75 75
             }
76 76
             else
77 77
             {
Please login to merge, or discard this patch.