Passed
Push — master ( 5686c5...33dcd4 )
by Francis
01:27
created
libraries/RESTAuth.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@  discard block
 block discarded – undo
6 6
    * [BasicAuth description]
7 7
    * @var string
8 8
    */
9
-  const BASIC   = "Basic";
9
+  const BASIC = "Basic";
10 10
 
11 11
   /**
12 12
    * [API_KEY description]
@@ -30,13 +30,13 @@  discard block
 block discarded – undo
30 30
    * [OAUTH2 description]
31 31
    * @var string
32 32
    */
33
-  const OAUTH2  = "OAUTH2";
33
+  const OAUTH2 = "OAUTH2";
34 34
 
35 35
   /**
36 36
    * [IP description]
37 37
    * @var string
38 38
    */
39
-  const IP      = "IP";
39
+  const IP = "IP";
40 40
   /**
41 41
    * [CUSTOM description]
42 42
    * @param  string $header [description]
Please login to merge, or discard this patch.
libraries/REST.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -123,16 +123,16 @@  discard block
 block discarded – undo
123 123
    * @param array|null $params Initialization parameters from the Slint system.
124 124
    *                           There's no use for this arg yet.
125 125
    */
126
-  function __construct(?array $params=null)
126
+  function __construct(?array $params = null)
127 127
   {
128
-    $this->ci =& get_instance();
128
+    $this->ci = & get_instance();
129 129
 
130 130
     if ($this->ci->input->is_cli_request()) return;
131 131
 
132 132
     // Load Config If Exists.
133 133
     //$this->ci->config->load('rest', true, true);
134
-    if (is_file(APPPATH . 'config/rest.php')) {
135
-      include APPPATH . 'config/rest.php';
134
+    if (is_file(APPPATH.'config/rest.php')) {
135
+      include APPPATH.'config/rest.php';
136 136
     }
137 137
 
138 138
     $this->config = $config;
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
 
149 149
     // Load Model.
150 150
     $this->ci->load->splint(self::PACKAGE, '*RESTModel', 'rest_model');
151
-    $this->rest_model =& $this->ci->rest_model;
151
+    $this->rest_model = & $this->ci->rest_model;
152 152
 
153 153
     $this->rest_model->init([
154 154
       'users_table'           => $config['basic_auth']['users_table'] ?? null,
@@ -267,7 +267,7 @@  discard block
 block discarded – undo
267 267
   /**
268 268
    * [bearer_auth description]
269 269
    */
270
-  private function bearer_auth($auth=RESTAuth::BEARER):void
270
+  private function bearer_auth($auth = RESTAuth::BEARER):void
271 271
   {
272 272
     $authorization = $this->get_authorization_header();
273 273
     if ($authorization == null || substr_count($authorization, ' ') != 1) {
@@ -330,7 +330,7 @@  discard block
 block discarded – undo
330 330
       }
331 331
       // Should we acyually Limit?
332 332
       if ($this->per_hour > 0) {
333
-        $client = hash('md5', $this->ci->input->ip_address() . "%" . $apiKey->{$this->api_key_column});
333
+        $client = hash('md5', $this->ci->input->ip_address()."%".$apiKey->{$this->api_key_column});
334 334
         $limitData = $this->rest_model->getLimitData($client, '_api_keyed_user');
335 335
         if ($limitData == null) {
336 336
           $limitData = [];
@@ -414,7 +414,7 @@  discard block
 block discarded – undo
414 414
    * [get_authorization_header description]
415 415
    * @return [type] [description]
416 416
    */
417
-  private function get_authorization_header():?string
417
+  private function get_authorization_header(): ?string
418 418
   {
419 419
     if (isset($_SERVER['Authorization'])) {
420 420
       return trim($_SERVER["Authorization"]);
@@ -437,7 +437,7 @@  discard block
 block discarded – undo
437 437
    * [handle_response description]
438 438
    * @param int $code [description]
439 439
    */
440
-  private function handle_response(int $code, $auth=null, ?string $errorReason=null):void
440
+  private function handle_response(int $code, $auth = null, ?string $errorReason = null):void
441 441
   {
442 442
     http_response_code($code);
443 443
     header("Content-Type: application/json");
Please login to merge, or discard this patch.