Test Setup Failed
Push — master ( 7dea29...43ef24 )
by Php Easy Api
05:34
created
src/resta/Database/Migration/Src/Connector/Mysql.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -29,14 +29,14 @@
 block discarded – undo
29 29
     {
30 30
         $this->config = $config;
31 31
 
32
-        if(is_null(self::$instance)){
32
+        if (is_null(self::$instance)) {
33 33
 
34 34
             //get pdo dsn
35
-            $dsn=''.$config['driver'].':host='.$config['host'].';dbname='.$config['database'].'';
35
+            $dsn = ''.$config['driver'].':host='.$config['host'].';dbname='.$config['database'].'';
36 36
             $this->connection = new \PDO($dsn, $config['user'], $config['password']);
37 37
             $this->connection->setAttribute(\PDO::ATTR_ERRMODE, \PDO::ERRMODE_EXCEPTION);
38 38
 
39
-            self::$instance=true;
39
+            self::$instance = true;
40 40
         }
41 41
     }
42 42
 
Please login to merge, or discard this patch.
src/resta/Database/Migration/Src/Resource/PushManager/PushingProcess.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -11,19 +11,19 @@  discard block
 block discarded – undo
11 11
      */
12 12
     public function processHandler()
13 13
     {
14
-        return $this->errorHandler(function(){
14
+        return $this->errorHandler(function() {
15 15
             
16
-            foreach ($this->list as $table =>$datas){
16
+            foreach ($this->list as $table =>$datas) {
17 17
 
18
-                foreach ($datas as $data){
18
+                foreach ($datas as $data) {
19 19
 
20
-                    $query = $this->queryBuilder($table,$data);
20
+                    $query = $this->queryBuilder($table, $data);
21 21
 
22 22
                     $query = $query->handle();
23 23
 
24
-                    $status =($query['result']!==false) ? true : false;
24
+                    $status = ($query['result']!==false) ? true : false;
25 25
 
26
-                    $results[]= [
26
+                    $results[] = [
27 27
                         'success'=>$status,
28 28
                         'file'=>$data->getFile(),
29 29
                         'table'=>$table,
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
         {
51 51
             foreach ($objects as $object)
52 52
             {
53
-                if(count($object->getError())){
53
+                if (count($object->getError())) {
54 54
                     return 'error : '.$object->getFile().' -> '.$object->getError()[0].'';
55 55
                 }
56 56
             }
Please login to merge, or discard this patch.
src/resta/Authenticate/Resource/AuthLoginCredentialsManager.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
      * @param $credentials
32 32
      * @param null|AuthLoginManager $manager
33 33
      */
34
-    public function __construct($credentials,$manager)
34
+    public function __construct($credentials, $manager)
35 35
     {
36 36
         //get credentials as default
37 37
         $this->credentials = $credentials;
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
         //get credential hash
43 43
         $this->setCredentialHash();
44 44
 
45
-        if($this->manager->getUsing()===false){
45
+        if ($this->manager->getUsing()===false) {
46 46
 
47 47
             // the request object will help you process
48 48
             // the credentials and get them correctly.
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
     {
95 95
         $request = $this->manager->getAuth()->getRequest();
96 96
 
97
-        if($request=='Default'){
97
+        if ($request=='Default') {
98 98
             return new AuthenticateRequest($this);
99 99
         }
100 100
 
@@ -122,8 +122,8 @@  discard block
 block discarded – undo
122 122
     private function setCredentialHash()
123 123
     {
124 124
         //set credential hash
125
-        if(count($this->credentials)){
126
-            $this->credentialHash = md5(sha1(implode("|",$this->credentials)));
125
+        if (count($this->credentials)) {
126
+            $this->credentialHash = md5(sha1(implode("|", $this->credentials)));
127 127
         }
128 128
     }
129 129
 }
130 130
\ No newline at end of file
Please login to merge, or discard this patch.
src/resta/Authenticate/Resource/ResourceManager.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/resta/Authenticate/Driver/BuilderParamGenerator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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();
Please login to merge, or discard this patch.
src/resta/Authenticate/ConfigProvider.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
     {
39 39
         $this->config();
40 40
 
41
-        if($this->guard=="default"){
41
+        if ($this->guard=="default") {
42 42
             $this->setAuthenticateNeeds();
43 43
         }
44 44
     }
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
      */
63 63
     public function getAddToWhere()
64 64
     {
65
-        if(isset($this->config['guard'][$this->guard]['addToWhere'])){
65
+        if (isset($this->config['guard'][$this->guard]['addToWhere'])) {
66 66
             return $this->config['guard'][$this->guard]['addToWhere'];
67 67
         }
68 68
         return null;
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
      */
76 76
     public function getConfigToken()
77 77
     {
78
-        if(isset($this->config['guard'][$this->guard]['token'])){
78
+        if (isset($this->config['guard'][$this->guard]['token'])) {
79 79
             return $this->config['guard'][$this->guard]['token'];
80 80
         }
81 81
         return null;
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
     {
101 101
         $this->getModel();
102 102
 
103
-        if($this->model=="Default"){
103
+        if ($this->model=="Default") {
104 104
 
105 105
             return $this->driverDefaultNamespace.'\\'.$this->getDriver().'\\UserBuilder';
106 106
         }
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
     {
128 128
         $this->getModel();
129 129
 
130
-        if($this->model=="Default"){
130
+        if ($this->model=="Default") {
131 131
 
132 132
             return $this->driverDefaultNamespace.'\\'.$this->getDriver().'\\User';
133 133
         }
Please login to merge, or discard this patch.
src/resta/Authenticate/Resource/AuthLoginManager.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -19,16 +19,16 @@  discard block
 block discarded – undo
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
 block discarded – undo
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;
Please login to merge, or discard this patch.
src/resta/Authenticate/AuthenticateRequest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
         $this->credentials = $credentials;
45 45
 
46 46
         //credentials loop for expected property
47
-        foreach ($this->credentials->get() as $credential){
47
+        foreach ($this->credentials->get() as $credential) {
48 48
             $this->expected[] = $credential;
49 49
         }
50 50
 
Please login to merge, or discard this patch.
src/resta/Authenticate/AuthenticateResponse.php 2 patches
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
     {
25 25
         // if the status value is true,
26 26
         // we send output generated from the token value.
27
-        if($this->checkStatus()){
27
+        if ($this->checkStatus()) {
28 28
             return true;
29 29
         }
30 30
 
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
     {
40 40
         // if the status value is true,
41 41
         // we send output generated from the token value.
42
-        if($this->checkStatus()){
42
+        if ($this->checkStatus()) {
43 43
             return true;
44 44
         }
45 45
 
@@ -52,11 +52,11 @@  discard block
 block discarded – undo
52 52
      */
53 53
     protected function getResult()
54 54
     {
55
-        $result= [];
55
+        $result = [];
56 56
 
57 57
         // if the status value is true,
58 58
         // we send output generated from the token value.
59
-        if($this->checkStatus()){
59
+        if ($this->checkStatus()) {
60 60
             $result['message']                  = 'token success';
61 61
             $result['token']                    = $this->params['token'];
62 62
 
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
         }
45 45
 
46 46
         //logout exception
47
-       $this->{$this->params['exception']}();
47
+        $this->{$this->params['exception']}();
48 48
     }
49 49
 
50 50
     /**
Please login to merge, or discard this patch.