@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | { |
26 | 26 | // if the auth value does not carry |
27 | 27 | // the authenticateProvider instance value, an exception is thrown. |
28 | - if(!$auth instanceof AuthenticateProvider){ |
|
28 | + if (!$auth instanceof AuthenticateProvider) { |
|
29 | 29 | exception()->runtime('AuthenticateProvider instance is not valid'); |
30 | 30 | } |
31 | 31 | |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | // the imported builder object. |
41 | 41 | $this->driverBuilderInstance = new $driverBuilder($auth); |
42 | 42 | |
43 | - if(!$this->driverBuilderInstance instanceof BuilderContract){ |
|
43 | + if (!$this->driverBuilderInstance instanceof BuilderContract) { |
|
44 | 44 | exception()->runtime($driverBuilder.' is not instance of '.BuilderContract::class); |
45 | 45 | } |
46 | 46 | } |
@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | */ |
13 | 13 | protected function paramValues(...$params) |
14 | 14 | { |
15 | - [$type,$query] = $params; |
|
15 | + [$type, $query] = $params; |
|
16 | 16 | |
17 | 17 | // with query we bind the returned values to the params property of the auth object. |
18 | 18 | // and so the auth object will make a final return with these values. |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | |
23 | 23 | // if status is true, |
24 | 24 | // we add values for some user benefits to params global access. |
25 | - if($this->auth->params['status']){ |
|
25 | + if ($this->auth->params['status']) { |
|
26 | 26 | |
27 | 27 | $this->auth->params['auth'] = $query->get(); |
28 | 28 | $this->auth->params['data'] = $query->first(); |
@@ -19,16 +19,16 @@ discard block |
||
19 | 19 | * @param $credentials |
20 | 20 | * @param $auth |
21 | 21 | */ |
22 | - public function __construct($credentials,$auth) |
|
22 | + public function __construct($credentials, $auth) |
|
23 | 23 | { |
24 | 24 | parent::__construct($auth); |
25 | 25 | |
26 | 26 | // where the control mechanism of the credentials |
27 | 27 | // values received from the user-defined yada config setting is made. |
28 | - $this->credentials = new AuthLoginCredentialsManager($this->getCredentials($credentials),$this); |
|
28 | + $this->credentials = new AuthLoginCredentialsManager($this->getCredentials($credentials), $this); |
|
29 | 29 | |
30 | 30 | //query login |
31 | - if($this->auth->getModel()=="Default"){ |
|
31 | + if ($this->auth->getModel()=="Default") { |
|
32 | 32 | $this->loginProcess(); |
33 | 33 | } |
34 | 34 | } |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | // if the user is not going to use the config setting, |
44 | 44 | // then in this case it can attempt to login by sending parameters |
45 | 45 | // as an array to the login method. |
46 | - if(is_array($credentials) && count($credentials)){ |
|
46 | + if (is_array($credentials) && count($credentials)) { |
|
47 | 47 | |
48 | 48 | $this->using = true; |
49 | 49 | return $credentials; |
@@ -13,5 +13,5 @@ |
||
13 | 13 | /** |
14 | 14 | * @var array |
15 | 15 | */ |
16 | - protected $fillable = ['user_id','token','token_integer','device_agent','device_agent_integer','expire']; |
|
16 | + protected $fillable = ['user_id', 'token', 'token_integer', 'device_agent', 'device_agent_integer', 'expire']; |
|
17 | 17 | } |
@@ -14,7 +14,7 @@ |
||
14 | 14 | * @param $auth |
15 | 15 | * @param $token |
16 | 16 | */ |
17 | - public function __construct($auth,$token) |
|
17 | + public function __construct($auth, $token) |
|
18 | 18 | { |
19 | 19 | parent::__construct($auth); |
20 | 20 |
@@ -11,7 +11,7 @@ |
||
11 | 11 | * @param $deviceTokenId |
12 | 12 | * @param AuthenticateProvider $auth |
13 | 13 | */ |
14 | - public function __construct($deviceTokenId,$auth) |
|
14 | + public function __construct($deviceTokenId, $auth) |
|
15 | 15 | { |
16 | 16 | parent::__construct($auth); |
17 | 17 |
@@ -9,21 +9,21 @@ discard block |
||
9 | 9 | * @param callable|null $callback |
10 | 10 | * @return mixed|null |
11 | 11 | */ |
12 | - protected function checkParamsViaAvailability($data,callable $callback=null) |
|
12 | + protected function checkParamsViaAvailability($data, callable $callback = null) |
|
13 | 13 | { |
14 | - if(is_callable($data) && is_null($callback)){ |
|
14 | + if (is_callable($data) && is_null($callback)) { |
|
15 | 15 | |
16 | 16 | // if an authenticate is provided via the existing check method, |
17 | 17 | // then we return the value of the data that we are checking for with callback help. |
18 | - if($this->check()){ |
|
18 | + if ($this->check()) { |
|
19 | 19 | return call_user_func($data); |
20 | 20 | } |
21 | 21 | } |
22 | 22 | |
23 | 23 | // if an authenticate is provided via the existing check method, |
24 | 24 | // then we return the value of the data that we are checking for with callback help. |
25 | - if($this->check() && isset($this->params[$data])){ |
|
26 | - return call_user_func_array($callback,[$this->params[$data]]); |
|
25 | + if ($this->check() && isset($this->params[$data])) { |
|
26 | + return call_user_func_array($callback, [$this->params[$data]]); |
|
27 | 27 | } |
28 | 28 | |
29 | 29 | return null; |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | |
39 | 39 | // we will determine whether |
40 | 40 | // the http path is correct for this method. |
41 | - if(isset($getHttp[$type]) and $getHttp[$type]!==httpMethod()){ |
|
41 | + if (isset($getHttp[$type]) and $getHttp[$type]!==httpMethod()) { |
|
42 | 42 | $this->getExceptionForHttp($getHttp[$type]); |
43 | 43 | } |
44 | 44 | } |
@@ -50,8 +50,8 @@ discard block |
||
50 | 50 | { |
51 | 51 | // if there is a token in the headers, |
52 | 52 | // we return the callback. |
53 | - if(!is_null($this->getTokenSentByUser())){ |
|
54 | - return call_user_func_array($callback,[$this->getTokenSentByUser()]); |
|
53 | + if (!is_null($this->getTokenSentByUser())) { |
|
54 | + return call_user_func_array($callback, [$this->getTokenSentByUser()]); |
|
55 | 55 | } |
56 | 56 | |
57 | 57 | //token false |
@@ -7,7 +7,7 @@ discard block |
||
7 | 7 | /** |
8 | 8 | * @var null |
9 | 9 | */ |
10 | - public $credentialHash=null; |
|
10 | + public $credentialHash = null; |
|
11 | 11 | |
12 | 12 | /** |
13 | 13 | * @return string |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | { |
17 | 17 | // the absolute params property must be present |
18 | 18 | // in the object and the params value must be the builder key. |
19 | - if(property_exists($this,'params') and isset($this->params['builder'])){ |
|
19 | + if (property_exists($this, 'params') and isset($this->params['builder'])) { |
|
20 | 20 | |
21 | 21 | // a real token will be generated after |
22 | 22 | // you get the first method of the query builder value. |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | |
25 | 25 | // we refer to the token closure feature on the config to enable |
26 | 26 | // the creation of user-based tokens on the application side. |
27 | - return $this->getTokenFromProvider($authData,function() use($authData){ |
|
27 | + return $this->getTokenFromProvider($authData, function() use($authData){ |
|
28 | 28 | return md5(sha1($authData->id.'__'.$this->credentialHash.'__'.time().'__'.fingerPrint())); |
29 | 29 | }); |
30 | 30 | } |
@@ -37,11 +37,11 @@ discard block |
||
37 | 37 | * @param callable $callback |
38 | 38 | * @return mixed |
39 | 39 | */ |
40 | - private function getTokenFromProvider($authData,callable $callback) |
|
40 | + private function getTokenFromProvider($authData, callable $callback) |
|
41 | 41 | { |
42 | 42 | // if the token value is a closure value, |
43 | 43 | // we will run a user-based token closure. |
44 | - if(app()->has('authenticate.token') && is_callable($token = app()->get('authenticate.token'))){ |
|
44 | + if (app()->has('authenticate.token') && is_callable($token = app()->get('authenticate.token'))) { |
|
45 | 45 | return $token($authData); |
46 | 46 | } |
47 | 47 |
@@ -19,19 +19,19 @@ discard block |
||
19 | 19 | * @param $command |
20 | 20 | * @param $args |
21 | 21 | */ |
22 | - public function __construct($app,$command,$args) |
|
22 | + public function __construct($app, $command, $args) |
|
23 | 23 | { |
24 | 24 | parent::__construct($app); |
25 | 25 | |
26 | 26 | $this->arguments[] = 'php'; |
27 | 27 | $this->arguments[] = 'api'; |
28 | - $this->arguments = array_merge($this->arguments,explode(" ",$command)); |
|
28 | + $this->arguments = array_merge($this->arguments, explode(" ", $command)); |
|
29 | 29 | $this->arguments[] = strtolower(app); |
30 | 30 | |
31 | - $argsList = explode(' ',$args); |
|
31 | + $argsList = explode(' ', $args); |
|
32 | 32 | |
33 | 33 | foreach ($argsList as $item) { |
34 | - $this->arguments[] = $item; |
|
34 | + $this->arguments[] = $item; |
|
35 | 35 | } |
36 | 36 | } |
37 | 37 | |
@@ -42,11 +42,11 @@ discard block |
||
42 | 42 | */ |
43 | 43 | public function handle() |
44 | 44 | { |
45 | - $process = new ProcessHandler($this->arguments,root.''); |
|
45 | + $process = new ProcessHandler($this->arguments, root.''); |
|
46 | 46 | $process->start(); |
47 | 47 | |
48 | 48 | foreach ($process as $type => $data) { |
49 | - if ($process::OUT !== $type) { |
|
49 | + if ($process::OUT!==$type) { |
|
50 | 50 | return false; |
51 | 51 | } |
52 | 52 | return true; |