Test Failed
Push — master ( d78f35...b9bd45 )
by Php Easy Api
04:33
created
resta/Database/Migration/Src/GrammarStructure/Mysql/Traits/QueryStack.php 2 patches
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -127,8 +127,7 @@  discard block
 block discarded – undo
127 127
                 'query'=>$query,
128 128
                 'message'=>null,
129 129
             ];
130
-        }
131
-        catch (\PDOException $exception){
130
+        } catch (\PDOException $exception){
132 131
 
133 132
             return [
134 133
                 'result'=>false,
@@ -167,8 +166,7 @@  discard block
 block discarded – undo
167 166
             if(!file_exists($entityDirectory.''.DIRECTORY_SEPARATOR.''.ucfirst($table))){
168 167
                 $generator = new Generator($entityDirectory.''.DIRECTORY_SEPARATOR.''.ucfirst($table),$table.'');
169 168
                 $generator->createClass();
170
-            }
171
-            else{
169
+            } else{
172 170
                 $generator = new Generator($entityDirectory.''.DIRECTORY_SEPARATOR.''.ucfirst($table),$table.'');
173 171
             }
174 172
 
Please login to merge, or discard this patch.
Spacing   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -15,14 +15,14 @@  discard block
 block discarded – undo
15 15
         return $this->schema->getConnection();
16 16
     }
17 17
 
18
-    public function registerMigration($table,$name)
18
+    public function registerMigration($table, $name)
19 19
     {
20 20
         return $this->connection()->query(
21 21
             "INSERT INTO migrations SET table_name ='".$table."',name='".$name."'
22 22
             ");
23 23
     }
24 24
 
25
-    public function checkMigration($table,$name)
25
+    public function checkMigration($table, $name)
26 26
     {
27 27
         $query = $this->connection()->query(
28 28
             "SELECT * FROM migrations WHERE table_name='".$table."' and name='".$name."'
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
 
34 34
     public function checkMigrationMain()
35 35
     {
36
-        return (in_array('migrations',$this->showTables())) ? true : false;
36
+        return (in_array('migrations', $this->showTables())) ? true : false;
37 37
     }
38 38
 
39 39
     /**
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
     {
72 72
         $collation = $this->connection()->query('SHOW COLLATION LIKE \''.$collation.'%\'')->fetchAll();
73 73
 
74
-        if(isset($collation[0])){
74
+        if (isset($collation[0])) {
75 75
             return $collation[0]['Charset'];
76 76
         }
77 77
 
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
     {
89 89
         $status = $this->connection()->query('show table status like \''.$table.'\'')->fetchAll();
90 90
 
91
-        if(isset($status[0])){
91
+        if (isset($status[0])) {
92 92
             return $status[0];
93 93
         }
94 94
 
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
         WHERE rc.CONSTRAINT_SCHEMA = \''.$database.'\'
125 125
         AND rc.TABLE_NAME = \''.$table.'\' AND r.REFERENCED_TABLE_NAME is not null')->fetchAll();
126 126
 
127
-        if(isset($query[0])){
127
+        if (isset($query[0])) {
128 128
             return $query[0];
129 129
         }
130 130
 
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
     {
142 142
         try {
143 143
 
144
-            $query =$this->connection()->query($query);
144
+            $query = $this->connection()->query($query);
145 145
 
146 146
             return [
147 147
                 'result'=>true,
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
                 'message'=>null,
150 150
             ];
151 151
         }
152
-        catch (\PDOException $exception){
152
+        catch (\PDOException $exception) {
153 153
 
154 154
             return [
155 155
                 'result'=>false,
@@ -165,15 +165,15 @@  discard block
 block discarded – undo
165 165
      */
166 166
     public function generateEntity($table)
167 167
     {
168
-        if(in_array($table,$this->showTables()) || in_array($table = strtolower($table),$this->showTables())){
168
+        if (in_array($table, $this->showTables()) || in_array($table = strtolower($table), $this->showTables())) {
169 169
 
170 170
             $entityDirectory = path()->model().''.DIRECTORY_SEPARATOR.'Entity';
171 171
 
172
-            if(!file_exists(app()->path()->model())){
172
+            if (!file_exists(app()->path()->model())) {
173 173
                 files()->makeDirectory(app()->path()->model());
174 174
             }
175 175
 
176
-            if(!file_exists($entityDirectory)){
176
+            if (!file_exists($entityDirectory)) {
177 177
                 files()->makeDirectory($entityDirectory);
178 178
             }
179 179
 
@@ -185,27 +185,27 @@  discard block
 block discarded – undo
185 185
                 $list[] = $column['Field'];
186 186
             }
187 187
 
188
-            if(!file_exists($entityDirectory.''.DIRECTORY_SEPARATOR.''.ucfirst($table))){
189
-                $generator = new Generator($entityDirectory.''.DIRECTORY_SEPARATOR.''.ucfirst($table),$table.'');
188
+            if (!file_exists($entityDirectory.''.DIRECTORY_SEPARATOR.''.ucfirst($table))) {
189
+                $generator = new Generator($entityDirectory.''.DIRECTORY_SEPARATOR.''.ucfirst($table), $table.'');
190 190
                 $generator->createClass();
191 191
             }
192
-            else{
193
-                $generator = new Generator($entityDirectory.''.DIRECTORY_SEPARATOR.''.ucfirst($table),$table.'');
192
+            else {
193
+                $generator = new Generator($entityDirectory.''.DIRECTORY_SEPARATOR.''.ucfirst($table), $table.'');
194 194
             }
195 195
 
196 196
 
197 197
             $abstractClassPath = $entityDirectory.''.DIRECTORY_SEPARATOR.''.ucfirst($table).''.DIRECTORY_SEPARATOR.'Entity';
198 198
             $abstractNamespace = Utils::getNamespace($abstractClassPath.''.DIRECTORY_SEPARATOR.''.ucfirst($table).'Abstract');
199 199
 
200
-            $generator->createClassExtend($abstractNamespace,ucfirst($table).'Abstract');
200
+            $generator->createClassExtend($abstractNamespace, ucfirst($table).'Abstract');
201 201
 
202
-            $generator = new Generator($abstractClassPath,$table.'Abstract');
202
+            $generator = new Generator($abstractClassPath, $table.'Abstract');
203 203
 
204 204
             $generator->createClass();
205 205
 
206
-            $method =array_merge([
206
+            $method = array_merge([
207 207
                 '__construct'
208
-            ],array_merge($list,['__get']));
208
+            ], array_merge($list, ['__get']));
209 209
 
210 210
             $generator->createMethod($method);
211 211
 
@@ -230,7 +230,7 @@  discard block
 block discarded – undo
230 230
 
231 231
             $generator->createClassDocument($createClassDocument);
232 232
 
233
-            $generator->createMethodDocument(array_merge($createMethodDocument,[
233
+            $generator->createMethodDocument(array_merge($createMethodDocument, [
234 234
                 '__construct' => [
235 235
                     ''.$table.' constructor.',
236 236
                     '@param null|object $query'
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
             $createMethodBody = array_merge([
247 247
                 '__construct' => 'self::$query = $query;',
248 248
                 '__get' => 'return static::{$name}();'
249
-            ],$methodBodyList);
249
+            ], $methodBodyList);
250 250
 
251 251
             $generator->createMethodBody($createMethodBody);
252 252
 
Please login to merge, or discard this patch.
src/resta/Support/ReflectionProcess.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
      */
41 41
     public function __construct($namespace = null)
42 42
     {
43
-        if($namespace!==null){
43
+        if ($namespace!==null) {
44 44
             $this->namespace = $namespace;
45 45
         }
46 46
     }
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
      */
73 73
     public function getReflectionClass()
74 74
     {
75
-        if(!isset(static::$singletons['reflectionClass'])){
75
+        if (!isset(static::$singletons['reflectionClass'])) {
76 76
             static::$singletons['reflectionClass'] = new ReflectionClass($this->namespace);
77 77
         }
78 78
         return static::$singletons['reflectionClass'];
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
      */
87 87
     public function getReflectionMethod($method)
88 88
     {
89
-        return new ReflectionMethod($this->namespace,$method);
89
+        return new ReflectionMethod($this->namespace, $method);
90 90
     }
91 91
 
92 92
     /**
@@ -98,12 +98,12 @@  discard block
 block discarded – undo
98 98
      *
99 99
      * @throws ReflectionException
100 100
      */
101
-    public function isAvailableMethodDocument($method=null,$param=null)
101
+    public function isAvailableMethodDocument($method = null, $param = null)
102 102
     {
103 103
         $document = $this->reflectionMethodParams($method)->document;
104 104
 
105
-        if(is_string($document)
106
-            && preg_match('#@'.$param.'\((.*?)\)\r\n#is',$document,$data)) {
105
+        if (is_string($document)
106
+            && preg_match('#@'.$param.'\((.*?)\)\r\n#is', $document, $data)) {
107 107
             if (is_array($data) && isset($data[1])) {
108 108
                 $this->documentData = $data[1];
109 109
                 return true;
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
      */
138 138
     public function __invoke($namespace = null)
139 139
     {
140
-        if($namespace!==null){
140
+        if ($namespace!==null) {
141 141
             $this->namespace = $namespace;
142 142
         }
143 143
         return $this;
Please login to merge, or discard this patch.
src/resta/Cache/CacheManager.php 2 patches
Spacing   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
      */
61 61
     public function adapter($adapter)
62 62
     {
63
-        if(!is_null($adapter)){
63
+        if (!is_null($adapter)) {
64 64
             $this->adapter = $adapter;
65 65
         }
66 66
 
@@ -74,9 +74,9 @@  discard block
 block discarded – undo
74 74
      * @param $cacheProvider
75 75
      * @param $data
76 76
      */
77
-    private function cacheServiceProvider($cacheItem,$cacheProvider,$data)
77
+    private function cacheServiceProvider($cacheItem, $cacheProvider, $data)
78 78
     {
79
-        if($cacheProvider($data)){
79
+        if ($cacheProvider($data)) {
80 80
             $cacheItem->set($data);
81 81
             $this->cache->save($cacheItem);
82 82
             $this->cacheServiceProvider = true;
@@ -93,23 +93,23 @@  discard block
 block discarded – undo
93 93
      * @param $data
94 94
      * @return bool|mixed
95 95
      */
96
-    private function containerCacheServiceProvider(callable $callback,$cacheItem,$data)
96
+    private function containerCacheServiceProvider(callable $callback, $cacheItem, $data)
97 97
     {
98
-        if($this->app->has('cache.class')){
98
+        if ($this->app->has('cache.class')) {
99 99
 
100 100
             $class = $this->app->get('cache.class');
101 101
 
102
-            if(is_callable(
102
+            if (is_callable(
103 103
                 $cacheProvider = $this->app->get('cache.'.class_basename($class[0]).':'.$class[1]))
104
-            ){
104
+            ) {
105 105
 
106
-                return $this->cacheServiceProvider($cacheItem,$cacheProvider,$data);
106
+                return $this->cacheServiceProvider($cacheItem, $cacheProvider, $data);
107 107
             }
108
-            elseif(is_callable(
108
+            elseif (is_callable(
109 109
                 $cacheProvider = $this->app->get('cache.'.class_basename($class[0])))
110 110
             )
111 111
             {
112
-                return $this->cacheServiceProvider($cacheItem,$cacheProvider,$data);
112
+                return $this->cacheServiceProvider($cacheItem, $cacheProvider, $data);
113 113
             }
114 114
         }
115 115
 
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
     {
127 127
         //name variable is
128 128
         //the name of the cache data set to be created.
129
-        if(!is_null($name)){
129
+        if (!is_null($name)) {
130 130
             $this->name = $name;
131 131
         }
132 132
 
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
     {
144 144
         //Cache data is set at the time.
145 145
         //Data will be valid in this time.
146
-        if(is_numeric($expire)){
146
+        if (is_numeric($expire)) {
147 147
             $this->expire = $expire;
148 148
         }
149 149
 
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
     {
163 163
         // this class has a macro that can be managed by the user.
164 164
         // macros work as an extensible version of the classes.
165
-        $macro = $this->app['macro']->with(config('kernel.macros.cache'),$this,$this->adapter);
165
+        $macro = $this->app['macro']->with(config('kernel.macros.cache'), $this, $this->adapter);
166 166
 
167 167
         //set cache macroable object
168 168
         $this->cache = $macro->{$this->adapter}($callback);
@@ -172,12 +172,12 @@  discard block
 block discarded – undo
172 172
         $backtrace = debug_backtrace()[1];
173 173
 
174 174
         //If name is null, we name it with backtrace.
175
-        if($this->name===null) {
175
+        if ($this->name===null) {
176 176
             $this->name = md5($backtrace['function'].'_'.$backtrace['class']);
177 177
         }
178 178
 
179 179
         //this method may show continuity depending on the macro.
180
-        if(false === $this instanceof $macro) return ;
180
+        if (false===$this instanceof $macro) return;
181 181
 
182 182
         // retrieve the cache item
183 183
         $cacheItem = $this->cache->getItem($this->name);
@@ -186,16 +186,16 @@  discard block
 block discarded – undo
186 186
 
187 187
             $data = call_user_func($callback);
188 188
 
189
-            return $this->containerCacheServiceProvider(function() use ($data,$cacheItem){
189
+            return $this->containerCacheServiceProvider(function() use ($data, $cacheItem){
190 190
                 $cacheItem->set($data);
191 191
                 $this->cache->save($cacheItem);
192 192
 
193 193
                 return $data;
194 194
 
195
-            },$cacheItem,$data);
195
+            },$cacheItem, $data);
196 196
         }
197 197
 
198
-        $this->app->register('illuminator','cache',['name'=>$this->name]);
198
+        $this->app->register('illuminator', 'cache', ['name'=>$this->name]);
199 199
 
200 200
         // retrieve the value stored by the item
201 201
         return $cacheItem->get();
Please login to merge, or discard this patch.
Braces   +4 added lines, -3 removed lines patch added patch discarded remove patch
@@ -104,8 +104,7 @@  discard block
 block discarded – undo
104 104
             ){
105 105
 
106 106
                 return $this->cacheServiceProvider($cacheItem,$cacheProvider,$data);
107
-            }
108
-            elseif(is_callable(
107
+            } elseif(is_callable(
109 108
                 $cacheProvider = $this->app->get('cache.'.class_basename($class[0])))
110 109
             )
111 110
             {
@@ -177,7 +176,9 @@  discard block
 block discarded – undo
177 176
         }
178 177
 
179 178
         //this method may show continuity depending on the macro.
180
-        if(false === $this instanceof $macro) return ;
179
+        if(false === $this instanceof $macro) {
180
+            return ;
181
+        }
181 182
 
182 183
         // retrieve the cache item
183 184
         $cacheItem = $this->cache->getItem($this->name);
Please login to merge, or discard this patch.
src/resta/Container/ContainerMethodDocumentResolver.php 2 patches
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,9 @@
 block discarded – undo
45 45
     {
46 46
         $cacheData = [];
47 47
 
48
-        if(!isset($this->class[1]) && !is_object($this->class[0])) return;
48
+        if(!isset($this->class[1]) && !is_object($this->class[0])) {
49
+            return;
50
+        }
49 51
 
50 52
         // if you have information about cache in
51 53
         // the document section of the method, the cache process is executed.
Please login to merge, or discard this patch.
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
      * @param $reflection
25 25
      * @param array $class
26 26
      */
27
-    public function __construct($app,$reflection,$class=array())
27
+    public function __construct($app, $reflection, $class = array())
28 28
     {
29 29
         parent::__construct($app);
30 30
 
@@ -45,27 +45,27 @@  discard block
 block discarded – undo
45 45
     {
46 46
         $cacheData = [];
47 47
 
48
-        if(!isset($this->class[1]) && !is_object($this->class[0])) return;
48
+        if (!isset($this->class[1]) && !is_object($this->class[0])) return;
49 49
 
50 50
         // if you have information about cache in
51 51
         // the document section of the method, the cache process is executed.
52
-        if($this->reflection->isAvailableMethodDocument($this->class[1],'cache')){
52
+        if ($this->reflection->isAvailableMethodDocument($this->class[1], 'cache')) {
53 53
 
54 54
             //as static we inject the name value into the cache data.
55 55
             $cacheData = ['cache'=>['name' => Utils::encryptArrayData($this->class)]];
56 56
 
57 57
             //cache data with the help of foreach data are transferred into the cache.
58
-            foreach(array_filter(explode(" ",$this->reflection->getDocumentData()),'strlen') as $item){
58
+            foreach (array_filter(explode(" ", $this->reflection->getDocumentData()), 'strlen') as $item) {
59 59
 
60
-                $items = explode("=",$item);
60
+                $items = explode("=", $item);
61 61
 
62 62
                 $cacheData['cache'][$items[0]] = $items[1];
63 63
 
64
-                if(in_array('query',$items)){
64
+                if (in_array('query', $items)) {
65 65
 
66
-                    foreach(explode(':',$items[1]) as $queryValue){
67
-                        $query = get($queryValue,null);
68
-                        if(!is_null($query)){
66
+                    foreach (explode(':', $items[1]) as $queryValue) {
67
+                        $query = get($queryValue, null);
68
+                        if (!is_null($query)) {
69 69
                             $cacheData['cache']['name'] = md5(sha1(
70 70
                                 $cacheData['cache']['name'].'_'.$queryValue.':'.$query
71 71
                             ));
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
         }
78 78
 
79 79
         //we save the data stored in the cacheData variable as methodCache.
80
-        $this->app->register('cache','methodCache',$cacheData);
81
-        $this->app->register('cache','class',$this->class);
80
+        $this->app->register('cache', 'methodCache', $cacheData);
81
+        $this->app->register('cache', 'class', $this->class);
82 82
     }
83 83
 }
84 84
\ No newline at end of file
Please login to merge, or discard this patch.
src/resta/Cache/CacheContainerResolver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
     public function cacheProcess($callback)
19 19
     {
20 20
         //we do cache key control for method cache container data.
21
-        if(isset($this->app['cache']['methodCache']['cache'])){
21
+        if (isset($this->app['cache']['methodCache']['cache'])) {
22 22
 
23 23
             //get cache data
24 24
             $cache = $this->app['cache']['methodCache']['cache'];
Please login to merge, or discard this patch.
src/resta/Contracts/ContainerContracts.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
      * @param null|string $alias
12 12
      * @return mixed
13 13
      */
14
-    public function bind($object=null,$callback=null,$alias=null);
14
+    public function bind($object = null, $callback = null, $alias = null);
15 15
 
16 16
     /**
17 17
      * @param $abstract
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
      * @param $container false
39 39
      * @return mixed
40 40
      */
41
-    public function make($object=null,$callback=null,$container=false);
41
+    public function make($object = null, $callback = null, $container = false);
42 42
 
43 43
     /**
44 44
      * @param $key
@@ -46,14 +46,14 @@  discard block
 block discarded – undo
46 46
      * @param null $concrete
47 47
      * @return mixed
48 48
      */
49
-    public function register($key,$object,$concrete=null);
49
+    public function register($key, $object, $concrete = null);
50 50
 
51 51
     /**
52 52
      * @param null $object
53 53
      * @param null $callback
54 54
      * @return mixed
55 55
      */
56
-    public function share($object=null,$callback=null);
56
+    public function share($object = null, $callback = null);
57 57
 
58 58
     /**
59 59
      * @method singleton
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
      * @param array $bind
67 67
      * @return mixed
68 68
      */
69
-    public function resolve($class,$bind=array());
69
+    public function resolve($class, $bind = array());
70 70
 
71 71
     /**
72 72
      * @param $class
Please login to merge, or discard this patch.
src/resta/Contracts/ApplicationContracts.php 2 patches
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
      * @param null|string $alias
12 12
      * @return mixed
13 13
      */
14
-    public function bind($object=null,$callback=null,$alias=null);
14
+    public function bind($object = null, $callback = null, $alias = null);
15 15
 
16 16
     /**
17 17
      * @param $object
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
      * @param array $arguments
25 25
      * @return mixed
26 26
      */
27
-    public function command($command,$arguments=array());
27
+    public function command($command, $arguments = array());
28 28
 
29 29
     /**
30 30
      * @return array
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
      * @param array $environment
52 52
      * @return mixed
53 53
      */
54
-   public function environment($environment=array());
54
+   public function environment($environment = array());
55 55
 
56 56
     /**
57 57
      * @param $abstract
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
      * @param $instance
76 76
      * @return mixed
77 77
      */
78
-   public function instance ($abstract,$instance);
78
+   public function instance($abstract, $instance);
79 79
 
80 80
     /**
81 81
      * @return mixed
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
      * @param array $loaders
109 109
      * @return mixed
110 110
      */
111
-    public function loadIfNotExistBoot($loaders=array());
111
+    public function loadIfNotExistBoot($loaders = array());
112 112
 
113 113
     /**
114 114
      * @method bind
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
      * @param $container false
118 118
      * @return mixed
119 119
      */
120
-    public function make($object=null,$callback=null,$container=false);
120
+    public function make($object = null, $callback = null, $container = false);
121 121
 
122 122
     /**
123 123
      * @param $maker
@@ -141,14 +141,14 @@  discard block
 block discarded – undo
141 141
      * @param mixed $concrete
142 142
      * @return mixed
143 143
      */
144
-    public function register($key,$object,$concrete=null);
144
+    public function register($key, $object, $concrete = null);
145 145
 
146 146
     /**
147 147
      * @param $class
148 148
      * @param array $bind
149 149
      * @return mixed
150 150
      */
151
-    public function resolve($class,$bind=array());
151
+    public function resolve($class, $bind = array());
152 152
 
153 153
     /**
154 154
      * @param $class
@@ -171,14 +171,14 @@  discard block
 block discarded – undo
171 171
      * @param string $path
172 172
      * @return mixed
173 173
      */
174
-   public function setPaths($name,$path);
174
+   public function setPaths($name, $path);
175 175
 
176 176
     /**
177 177
      * @param null $object
178 178
      * @param null $callback
179 179
      * @return mixed
180 180
      */
181
-    public function share($object=null,$callback=null);
181
+    public function share($object = null, $callback = null);
182 182
 
183 183
     /**
184 184
      * @method singleton
@@ -191,7 +191,7 @@  discard block
 block discarded – undo
191 191
      * @param null|string $object
192 192
      * @return mixed
193 193
      */
194
-    public function terminate($key,$object=null);
194
+    public function terminate($key, $object = null);
195 195
 
196 196
     /**
197 197
      * @return mixed
Please login to merge, or discard this patch.
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -40,23 +40,23 @@  discard block
 block discarded – undo
40 40
     /**
41 41
      * @return mixed
42 42
      */
43
-   public function console();
43
+    public function console();
44 44
 
45 45
     /**
46 46
      * @return mixed
47 47
      */
48
-   public function containerCacheFile();
48
+    public function containerCacheFile();
49 49
 
50 50
     /**
51 51
      * @return mixed
52 52
      */
53
-   public function corePath();
53
+    public function corePath();
54 54
 
55 55
     /**
56 56
      * @param array $environment
57 57
      * @return mixed
58 58
      */
59
-   public function environment($environment=array());
59
+    public function environment($environment=array());
60 60
 
61 61
     /**
62 62
      * @param $abstract
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
     /**
68 68
      * @return mixed
69 69
      */
70
-   public function handle();
70
+    public function handle();
71 71
 
72 72
     /**
73 73
      * @param $abstract
@@ -80,12 +80,12 @@  discard block
 block discarded – undo
80 80
      * @param $instance
81 81
      * @return mixed
82 82
      */
83
-   public function instance ($abstract,$instance);
83
+    public function instance ($abstract,$instance);
84 84
 
85 85
     /**
86 86
      * @return mixed
87 87
      */
88
-   public function isLocale();
88
+    public function isLocale();
89 89
 
90 90
     /**
91 91
      * @method kernel
@@ -96,12 +96,12 @@  discard block
 block discarded – undo
96 96
     /**
97 97
      * @return array
98 98
      */
99
-   public function kernelGroupKeys();
99
+    public function kernelGroupKeys();
100 100
 
101 101
     /**
102 102
      * @return array
103 103
      */
104
-   public function kernelGroupList();
104
+    public function kernelGroupList();
105 105
 
106 106
     /**
107 107
      * @param callable $callback
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
      * @param string $path
177 177
      * @return mixed
178 178
      */
179
-   public function setPaths($name,$path);
179
+    public function setPaths($name,$path);
180 180
 
181 181
     /**
182 182
      * @param null $object
@@ -201,5 +201,5 @@  discard block
 block discarded – undo
201 201
     /**
202 202
      * @return mixed
203 203
      */
204
-   public function version();
204
+    public function version();
205 205
 }
206 206
\ No newline at end of file
Please login to merge, or discard this patch.
src/resta/Support/App.php 2 patches
Braces   +4 added lines, -3 removed lines patch added patch discarded remove patch
@@ -219,7 +219,9 @@  discard block
 block discarded – undo
219 219
         $repositoryAdapterName  = $repositoryName.'Adapter';
220 220
         $repositoryNamespace    = app()->namespace()->repository().'\\'.$repositoryName.'\\'.$repositoryAdapterName;
221 221
 
222
-        if($namespace) return $repositoryNamespace;
222
+        if($namespace) {
223
+            return $repositoryNamespace;
224
+        }
223 225
 
224 226
         //and eventually we conclude the adapter class of the repository package as an instance.
225 227
         return app()->resolve($repositoryNamespace)->adapter();
@@ -290,8 +292,7 @@  discard block
 block discarded – undo
290 292
 
291 293
         if(self::app()->has('locale')){
292 294
             $defaultLocale = self::app()->get('locale');
293
-        }
294
-        else{
295
+        } else{
295 296
             $defaultLocale = config('app.locale');
296 297
         }
297 298
 
Please login to merge, or discard this patch.
Spacing   +43 added lines, -43 removed lines patch added patch discarded remove patch
@@ -24,29 +24,29 @@  discard block
 block discarded – undo
24 24
      * @param $arg
25 25
      * @return mixed
26 26
      */
27
-    public static function annotationsLoaders($service,$arg)
27
+    public static function annotationsLoaders($service, $arg)
28 28
     {
29 29
         //factory runner
30
-        if($service=="factory"){
30
+        if ($service=="factory") {
31 31
             return self::factory();
32 32
         }
33 33
         //if $name starts with $needles for repository
34
-        if(Str::endsWith($service,'Repository')){
34
+        if (Str::endsWith($service, 'Repository')) {
35 35
             return self::repository($service);
36 36
         }
37 37
 
38 38
         //if $name starts with $needles for source
39
-        if(Str::endsWith($service,'Source')){
40
-            return self::source($service,$arg);
39
+        if (Str::endsWith($service, 'Source')) {
40
+            return self::source($service, $arg);
41 41
         }
42 42
 
43 43
         //if $name starts with $needles for model
44
-        if(Str::endsWith($service,'Builder')){
44
+        if (Str::endsWith($service, 'Builder')) {
45 45
             return self::Builder(ucfirst($service));
46 46
         }
47 47
 
48 48
 
49
-        if(method_exists(new self,$service)){
49
+        if (method_exists(new self, $service)) {
50 50
             return self::$service($arg);
51 51
         }
52 52
 
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
     private static function builder($service)
100 100
     {
101 101
         //we are making a namespace assignment for the builder.
102
-        $builder=app()->namespace()->builder().'\BuilderMap';
102
+        $builder = app()->namespace()->builder().'\BuilderMap';
103 103
 
104 104
         //we are getting builder instance.
105 105
         return app()->resolve($builder);
@@ -127,16 +127,16 @@  discard block
 block discarded – undo
127 127
      * @param array $bind
128 128
      * @return mixed
129 129
      */
130
-    public function container($instance,$class,$bind=array())
130
+    public function container($instance, $class, $bind = array())
131 131
     {
132
-        if(!property_exists($instance->container(),$class)){
132
+        if (!property_exists($instance->container(), $class)) {
133 133
             throw new \InvalidArgumentException('container object false for ('.$class.') object');
134 134
         }
135 135
 
136
-        $container=$instance->container()->{$class};
136
+        $container = $instance->container()->{$class};
137 137
 
138
-        if(!is_array($instance->container()->{$class}) AND Utils::isNamespaceExists($container)){
139
-            return $instance->resolve($container,$bind);
138
+        if (!is_array($instance->container()->{$class}) AND Utils::isNamespaceExists($container)) {
139
+            return $instance->resolve($container, $bind);
140 140
         }
141 141
         return $instance->container()->{$class};
142 142
     }
@@ -146,8 +146,8 @@  discard block
 block discarded – undo
146 146
      */
147 147
     public function createAppInstance($object)
148 148
     {
149
-        if(!defined('appInstance')){
150
-            define('appInstance',(base64_encode(serialize($object))));
149
+        if (!defined('appInstance')) {
150
+            define('appInstance', (base64_encode(serialize($object))));
151 151
         }
152 152
     }
153 153
 
@@ -155,9 +155,9 @@  discard block
 block discarded – undo
155 155
      * @param array $arg
156 156
      * @return mixed
157 157
      */
158
-    private static function date($arg=array())
158
+    private static function date($arg = array())
159 159
     {
160
-        $locale = (count($arg)=="0") ? config('app.locale','en') : current($arg);
160
+        $locale = (count($arg)=="0") ? config('app.locale', 'en') : current($arg);
161 161
 
162 162
         return app()->resolve(Date::class)->setLocale($locale);
163 163
     }
@@ -177,8 +177,8 @@  discard block
 block discarded – undo
177 177
     {
178 178
         //we save an instance for the entire application
179 179
         //and add it to the helper file to be accessed from anywhere in the application.
180
-        if(!isset(self::$instance['appInstance'])){
181
-            self::$instance['appInstance']=unserialize(base64_decode(appInstance));
180
+        if (!isset(self::$instance['appInstance'])) {
181
+            self::$instance['appInstance'] = unserialize(base64_decode(appInstance));
182 182
             return self::$instance['appInstance'];
183 183
         }
184 184
         return self::$instance['appInstance'];
@@ -205,9 +205,9 @@  discard block
 block discarded – undo
205 205
      */
206 206
     private static function queue()
207 207
     {
208
-        if(!isset(self::$instance['queue'])){
208
+        if (!isset(self::$instance['queue'])) {
209 209
 
210
-            self::$instance['queue']=(new Queue());
210
+            self::$instance['queue'] = (new Queue());
211 211
             return self::$instance['queue'];
212 212
 
213 213
         }
@@ -219,18 +219,18 @@  discard block
 block discarded – undo
219 219
      * @param bool $namespace
220 220
      * @return string
221 221
      */
222
-    public static function repository($service,$namespace=false)
222
+    public static function repository($service, $namespace = false)
223 223
     {
224 224
         //I can get the repository name from the magic method as a salt repository,
225 225
         //after which we will edit it as an adapter namespace.
226
-        $repositoryName=ucfirst(preg_replace('@Repository@is','',$service));
226
+        $repositoryName = ucfirst(preg_replace('@Repository@is', '', $service));
227 227
 
228 228
         //If we then configure the name of the simple repository to be an adapter
229 229
         //then we will give the user an example of the adapter class in each repository call.
230 230
         $repositoryAdapterName  = $repositoryName.'Adapter';
231 231
         $repositoryNamespace    = app()->namespace()->repository().'\\'.$repositoryName.'\\'.$repositoryAdapterName;
232 232
 
233
-        if($namespace) return $repositoryNamespace;
233
+        if ($namespace) return $repositoryNamespace;
234 234
 
235 235
         //and eventually we conclude the adapter class of the repository package as an instance.
236 236
         return app()->resolve($repositoryNamespace)->adapter();
@@ -241,17 +241,17 @@  discard block
 block discarded – undo
241 241
      * @param $arg
242 242
      * @return mixed
243 243
      */
244
-    private static function source($service,$arg)
244
+    private static function source($service, $arg)
245 245
     {
246 246
         //get Source path
247
-        $service=ucfirst($service);
248
-        $getCalledClass=str_replace('\\'.class_basename($arg[0]),'',get_class($arg[0]));
249
-        $getCalledClass=class_basename($getCalledClass);
247
+        $service = ucfirst($service);
248
+        $getCalledClass = str_replace('\\'.class_basename($arg[0]), '', get_class($arg[0]));
249
+        $getCalledClass = class_basename($getCalledClass);
250 250
 
251
-        $service=str_replace($getCalledClass,'',$service);
251
+        $service = str_replace($getCalledClass, '', $service);
252 252
 
253 253
         //run service for endpoint
254
-        $serviceSource=StaticPathModel::appSourceEndpoint().'\\'.$getCalledClass.'\\'.$service.'\Main';
254
+        $serviceSource = StaticPathModel::appSourceEndpoint().'\\'.$getCalledClass.'\\'.$service.'\Main';
255 255
         return app()->resolve($serviceSource);
256 256
     }
257 257
 
@@ -260,9 +260,9 @@  discard block
 block discarded – undo
260 260
      */
261 261
     public static function redis()
262 262
     {
263
-        if(!isset(self::$instance['redis'])){
263
+        if (!isset(self::$instance['redis'])) {
264 264
 
265
-            self::$instance['redis']=(new Redis())->client();
265
+            self::$instance['redis'] = (new Redis())->client();
266 266
             return self::$instance['redis'];
267 267
 
268 268
         }
@@ -273,13 +273,13 @@  discard block
 block discarded – undo
273 273
      * @param null $param
274 274
      * @return array|null|string
275 275
      */
276
-    public function route($param=null)
276
+    public function route($param = null)
277 277
     {
278
-        $kernel=self::getAppInstance()->kernel;
278
+        $kernel = self::getAppInstance()->kernel;
279 279
 
280
-        $saltRouteParameters=$kernel->routeParameters;
280
+        $saltRouteParameters = $kernel->routeParameters;
281 281
 
282
-        if($param===null){
282
+        if ($param===null) {
283 283
             return $saltRouteParameters;
284 284
         }
285 285
 
@@ -295,25 +295,25 @@  discard block
 block discarded – undo
295 295
      * @param array $select
296 296
      * @return mixed|string
297 297
      */
298
-    public function translator($data,$select=array())
298
+    public function translator($data, $select = array())
299 299
     {
300 300
         $languageDir = path()->appLanguage();
301 301
 
302
-        $lang=(new Lingua($languageDir));
302
+        $lang = (new Lingua($languageDir));
303 303
 
304
-        if(self::app()->has('locale')){
304
+        if (self::app()->has('locale')) {
305 305
             $defaultLocale = self::app()->get('locale');
306 306
         }
307
-        else{
307
+        else {
308 308
             $defaultLocale = config('app.locale');
309 309
         }
310 310
 
311
-        if(!file_exists($languageDir.''.DIRECTORY_SEPARATOR.''.$defaultLocale)){
311
+        if (!file_exists($languageDir.''.DIRECTORY_SEPARATOR.''.$defaultLocale)) {
312 312
             $defaultLocale = config('app.fallback_locale');
313 313
         }
314 314
 
315
-        if(count($select)){
316
-            return $lang->include(['default'])->locale($defaultLocale)->get($data,$select);
315
+        if (count($select)) {
316
+            return $lang->include(['default'])->locale($defaultLocale)->get($data, $select);
317 317
         }
318 318
 
319 319
         return $lang->include(['default'])->locale($defaultLocale)->get($data);
Please login to merge, or discard this patch.
src/resta/Contracts/RequestContract.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
      * @param null $default
15 15
      * @return mixed
16 16
      */
17
-    public function input($key, $default=null);
17
+    public function input($key, $default = null);
18 18
 
19 19
     /**
20 20
      * @param $key
Please login to merge, or discard this patch.