@@ -39,12 +39,12 @@ discard block |
||
39 | 39 | private function getCallBindController() |
40 | 40 | { |
41 | 41 | //we finally process the method of the class invoked by the user as a process and prepare it for the response |
42 | - return app()->resolve(RouteWatch::class)->watch(function(){ |
|
42 | + return app()->resolve(RouteWatch::class)->watch(function() { |
|
43 | 43 | |
44 | 44 | // if the method in the instance object exists, |
45 | 45 | // this method is executed to produce the output. |
46 | - if(method_exists($this->app['instanceController'],$this->app['method'])){ |
|
47 | - return DIContainerManager::callBind([$this->app['instanceController'],$this->app['method']], |
|
46 | + if (method_exists($this->app['instanceController'], $this->app['method'])) { |
|
47 | + return DIContainerManager::callBind([$this->app['instanceController'], $this->app['method']], |
|
48 | 48 | $this->app->applicationProviderBinding($this->app)); |
49 | 49 | } |
50 | 50 | |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | */ |
64 | 64 | public function handle() |
65 | 65 | { |
66 | - $this->app->register('routerResult',$this->callController()); |
|
66 | + $this->app->register('routerResult', $this->callController()); |
|
67 | 67 | |
68 | 68 | //we call our services as controller |
69 | 69 | return $this->app['routerResult']; |
@@ -80,8 +80,8 @@ discard block |
||
80 | 80 | $namespace = $this->getControllerNamespace(); |
81 | 81 | |
82 | 82 | //utils make bind via dependency injection named as service container |
83 | - $this->app->register('serviceConf',$this->app['fileSystem']->callFile(StaticPathModel::getServiceConf())); |
|
84 | - $this->app->register('instanceController',$this->app->resolve($namespace)); |
|
83 | + $this->app->register('serviceConf', $this->app['fileSystem']->callFile(StaticPathModel::getServiceConf())); |
|
84 | + $this->app->register('instanceController', $this->app->resolve($namespace)); |
|
85 | 85 | } |
86 | 86 | |
87 | 87 | /** |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | |
99 | 99 | // based on the serviceConf variable, |
100 | 100 | // we are doing parameter bindings in the method context in the routeParameters array key. |
101 | - $this->app->register('serviceConf','routeParameters',[$method=>$parameters]); |
|
101 | + $this->app->register('serviceConf', 'routeParameters', [$method=>$parameters]); |
|
102 | 102 | |
103 | 103 | } |
104 | 104 | |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | */ |
111 | 111 | public function setMethodNameViaDefine($methodName) |
112 | 112 | { |
113 | - define('methodName',strtolower($methodName)); |
|
113 | + define('methodName', strtolower($methodName)); |
|
114 | 114 | } |
115 | 115 | |
116 | 116 | |
@@ -141,7 +141,7 @@ discard block |
||
141 | 141 | $fromRoutes = Route::getRouteResolve(); |
142 | 142 | $method = $fromRoutes['method'] ?? $method; |
143 | 143 | |
144 | - $this->app->register('method',$method); |
|
144 | + $this->app->register('method', $method); |
|
145 | 145 | $this->app->register('routeParameters', $this->routeParametersAssign($this->resolveMethod($method))); |
146 | 146 | |
147 | 147 | } |
@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | * @param callable|null $func |
12 | 12 | * @return string |
13 | 13 | */ |
14 | - public function getNamespaceForAutoService($instance,callable $func = null) |
|
14 | + public function getNamespaceForAutoService($instance, callable $func = null) |
|
15 | 15 | { |
16 | 16 | //get namespace for auto service |
17 | 17 | $autoServiceNamespace = $instance->autoService(); |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | $configAutoServices = config('autoservices'); |
22 | 22 | |
23 | 23 | //auto service is invoked if auto service is allowed for any class yada config. |
24 | - if(class_exists($autoServiceNamespace) && $configAutoServices[strtolower(endpoint)]){ |
|
24 | + if (class_exists($autoServiceNamespace) && $configAutoServices[strtolower(endpoint)]) { |
|
25 | 25 | return $autoServiceNamespace; |
26 | 26 | } |
27 | 27 |
@@ -52,7 +52,7 @@ |
||
52 | 52 | { |
53 | 53 | // detects where the route path is coming from |
54 | 54 | // and returns this data in the static path. |
55 | - $trace = Utils::trace(2,'file'); |
|
55 | + $trace = Utils::trace(2, 'file'); |
|
56 | 56 | |
57 | 57 | // the trace is returned if the variable is available |
58 | 58 | // in the path data, otherwise it returns null. |
@@ -12,17 +12,17 @@ |
||
12 | 12 | */ |
13 | 13 | public function watch(callable $callback) |
14 | 14 | { |
15 | - if(config('app.watch')){ |
|
15 | + if (config('app.watch')) { |
|
16 | 16 | |
17 | 17 | // the memory usage component provides |
18 | 18 | // a way to profile code. |
19 | 19 | $memoryUsage = memory_get_usage(); |
20 | 20 | |
21 | 21 | //get controller output |
22 | - $controllerOutput=call_user_func($callback); |
|
22 | + $controllerOutput = call_user_func($callback); |
|
23 | 23 | |
24 | 24 | //save to kernel for a variable named controller Watch |
25 | - $this->app->register('controllerWatch', 'memory',memory_get_usage() - $memoryUsage); |
|
25 | + $this->app->register('controllerWatch', 'memory', memory_get_usage()-$memoryUsage); |
|
26 | 26 | } |
27 | 27 | |
28 | 28 | // if watch config is true; in this case |
@@ -203,8 +203,7 @@ |
||
203 | 203 | if(file_exists($routeMapper) && !isset(static::$paths[$routeMapper])){ |
204 | 204 | static::$paths[$routeMapper] = $routeDefinitor['controllerPath']; |
205 | 205 | } |
206 | - } |
|
207 | - else{ |
|
206 | + } else{ |
|
208 | 207 | |
209 | 208 | // if there is no endpoint, |
210 | 209 | // all files in the path of the route are transferred to path. |
@@ -42,13 +42,13 @@ discard block |
||
42 | 42 | * @param $urlRoute |
43 | 43 | * @return int|string |
44 | 44 | */ |
45 | - public static function checkArrayEqual($patterns,$urlRoute) |
|
45 | + public static function checkArrayEqual($patterns, $urlRoute) |
|
46 | 46 | { |
47 | 47 | // calculates the equality difference between |
48 | 48 | // the route pattern and the urlRoute value. |
49 | - foreach ($patterns as $key=>$pattern){ |
|
49 | + foreach ($patterns as $key=>$pattern) { |
|
50 | 50 | |
51 | - if(Utils::isArrayEqual($pattern,$urlRoute)){ |
|
51 | + if (Utils::isArrayEqual($pattern, $urlRoute)) { |
|
52 | 52 | return $key; |
53 | 53 | } |
54 | 54 | } |
@@ -68,17 +68,17 @@ discard block |
||
68 | 68 | // get routes data and the resolving pattern |
69 | 69 | // Both are interrelated. |
70 | 70 | $routes = self::getRoutes(); |
71 | - $patternResolve = app()->resolve(RouteMatching::class,['route'=>new self()])->getPatternResolve(); |
|
71 | + $patternResolve = app()->resolve(RouteMatching::class, ['route'=>new self()])->getPatternResolve(); |
|
72 | 72 | |
73 | 73 | // |
74 | 74 | self::updateRouteParameters($patternResolve); |
75 | 75 | |
76 | 76 | //if routes data is available in pattern resolve. |
77 | - if(isset($routes['data'][$patternResolve])){ |
|
77 | + if (isset($routes['data'][$patternResolve])) { |
|
78 | 78 | |
79 | 79 | // if the incoming http value is |
80 | 80 | // the same as the real request method, the data is processed. |
81 | - if($routes['data'][$patternResolve]['http'] == strtolower(httpMethod)){ |
|
81 | + if ($routes['data'][$patternResolve]['http']==strtolower(httpMethod)) { |
|
82 | 82 | |
83 | 83 | // we are set the solved pattern to a variable. |
84 | 84 | $resolve = $routes['data'][$patternResolve]; |
@@ -104,24 +104,24 @@ discard block |
||
104 | 104 | { |
105 | 105 | $list = []; |
106 | 106 | |
107 | - if(isset(static::$routes['pattern'][$patternResolvedKey])){ |
|
107 | + if (isset(static::$routes['pattern'][$patternResolvedKey])) { |
|
108 | 108 | |
109 | 109 | $routeParameters = static::$routes['pattern'][$patternResolvedKey]; |
110 | 110 | $route = route(); |
111 | 111 | |
112 | - foreach($routeParameters as $key=>$param){ |
|
112 | + foreach ($routeParameters as $key=>$param) { |
|
113 | 113 | |
114 | - $param = str_replace('{','',$param); |
|
115 | - $param = str_replace('?','',$param); |
|
116 | - $param = str_replace('}','',$param); |
|
114 | + $param = str_replace('{', '', $param); |
|
115 | + $param = str_replace('?', '', $param); |
|
116 | + $param = str_replace('}', '', $param); |
|
117 | 117 | |
118 | - if(isset($route[$key])){ |
|
118 | + if (isset($route[$key])) { |
|
119 | 119 | $list[$param] = $route[$key]; |
120 | 120 | } |
121 | 121 | } |
122 | 122 | } |
123 | 123 | |
124 | - app()->register('routeParams',$list); |
|
124 | + app()->register('routeParams', $list); |
|
125 | 125 | } |
126 | 126 | |
127 | 127 | /** |
@@ -133,7 +133,7 @@ discard block |
||
133 | 133 | { |
134 | 134 | // we will record the path data for the route. |
135 | 135 | // We set the routeMapper variables and the route path. |
136 | - self::setPath(function(){ |
|
136 | + self::setPath(function() { |
|
137 | 137 | |
138 | 138 | // we are sending |
139 | 139 | // the controller and routes.php path. |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | |
146 | 146 | // in the paths data, |
147 | 147 | // we run the route mapper values and the route files one by one. |
148 | - foreach (self::$paths as $mapper=>$controller){ |
|
148 | + foreach (self::$paths as $mapper=>$controller) { |
|
149 | 149 | core()->fileSystem->callFile($mapper); |
150 | 150 | } |
151 | 151 | } |
@@ -159,7 +159,7 @@ discard block |
||
159 | 159 | { |
160 | 160 | $routeDefinitor = call_user_func($callback); |
161 | 161 | |
162 | - if(isset($routeDefinitor['controllerPath']) && isset($routeDefinitor['routePath'])){ |
|
162 | + if (isset($routeDefinitor['controllerPath']) && isset($routeDefinitor['routePath'])) { |
|
163 | 163 | |
164 | 164 | //the route paths to be saved to the mappers static property. |
165 | 165 | static::$mappers['routePaths'][] = $routeDefinitor['routePath']; |
@@ -167,22 +167,22 @@ discard block |
||
167 | 167 | |
168 | 168 | // if there is endpoint, |
169 | 169 | // then only that endpoint is transferred into the path |
170 | - if(defined('endpoint')){ |
|
170 | + if (defined('endpoint')) { |
|
171 | 171 | |
172 | 172 | $routeName = endpoint.'Route.php'; |
173 | 173 | $routeMapper = $routeDefinitor['routePath'].''.DIRECTORY_SEPARATOR.''.$routeName; |
174 | 174 | |
175 | - if(file_exists($routeMapper) && !isset(static::$paths[$routeMapper])){ |
|
175 | + if (file_exists($routeMapper) && !isset(static::$paths[$routeMapper])) { |
|
176 | 176 | static::$paths[$routeMapper] = $routeDefinitor['controllerPath']; |
177 | 177 | } |
178 | 178 | } |
179 | - else{ |
|
179 | + else { |
|
180 | 180 | |
181 | 181 | // if there is no endpoint, |
182 | 182 | // all files in the path of the route are transferred to path. |
183 | 183 | $allFilesInThatRoutePath = Utils::glob($routeDefinitor['routePath']); |
184 | 184 | |
185 | - foreach ($allFilesInThatRoutePath as $item){ |
|
185 | + foreach ($allFilesInThatRoutePath as $item) { |
|
186 | 186 | static::$paths[$item] = $routeDefinitor['controllerPath']; |
187 | 187 | } |
188 | 188 | } |
@@ -196,13 +196,13 @@ discard block |
||
196 | 196 | * @param $function |
197 | 197 | * @param null $controller |
198 | 198 | */ |
199 | - public static function setRoute($params,$function,$controller=null) |
|
199 | + public static function setRoute($params, $function, $controller = null) |
|
200 | 200 | { |
201 | - [$pattern,$route] = $params; |
|
202 | - [$class,$method] = explode("@",$route); |
|
201 | + [$pattern, $route] = $params; |
|
202 | + [$class, $method] = explode("@", $route); |
|
203 | 203 | |
204 | 204 | $patternList = array_values( |
205 | - array_filter(explode("/",$pattern),'strlen') |
|
205 | + array_filter(explode("/", $pattern), 'strlen') |
|
206 | 206 | ); |
207 | 207 | |
208 | 208 | static::$routes['pattern'][] = $patternList; |
@@ -212,7 +212,7 @@ discard block |
||
212 | 212 | 'http' => $function, |
213 | 213 | 'controller' => $controller, |
214 | 214 | 'namespace' => static::$namespace, |
215 | - 'endpoint' => strtolower(str_replace(StaticPathList::$controllerBundleName,'',static::$namespace)) |
|
215 | + 'endpoint' => strtolower(str_replace(StaticPathList::$controllerBundleName, '', static::$namespace)) |
|
216 | 216 | ]; |
217 | 217 | } |
218 | 218 | |
@@ -222,11 +222,11 @@ discard block |
||
222 | 222 | * @param null $value |
223 | 223 | * @return bool |
224 | 224 | */ |
225 | - public static function isMatchVaribleRegexPattern($value=null) |
|
225 | + public static function isMatchVaribleRegexPattern($value = null) |
|
226 | 226 | { |
227 | 227 | // determines if the variable that can be used |
228 | 228 | // in the route file meets the regex rule. |
229 | - return (preg_match('@\{(.*?)\}@is',$value)) ? true : false; |
|
229 | + return (preg_match('@\{(.*?)\}@is', $value)) ? true : false; |
|
230 | 230 | } |
231 | 231 | |
232 | 232 | |
@@ -236,11 +236,11 @@ discard block |
||
236 | 236 | * @param null $value |
237 | 237 | * @return bool |
238 | 238 | */ |
239 | - public static function isOptionalVaribleRegexPattern($value=null) |
|
239 | + public static function isOptionalVaribleRegexPattern($value = null) |
|
240 | 240 | { |
241 | 241 | // determines if the variable that can be used |
242 | 242 | // in the route file meets the regex rule. |
243 | - return preg_match('@\{[a-z]+\?\}@is',$value) ? true : false; |
|
243 | + return preg_match('@\{[a-z]+\?\}@is', $value) ? true : false; |
|
244 | 244 | } |
245 | 245 | |
246 | 246 |
@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | /** |
10 | 10 | * @var array $routerSpecification |
11 | 11 | */ |
12 | - protected $routerSpecification=[ |
|
12 | + protected $routerSpecification = [ |
|
13 | 13 | 'pickRouter', |
14 | 14 | 'stackRouter' |
15 | 15 | ]; |
@@ -19,8 +19,8 @@ discard block |
||
19 | 19 | */ |
20 | 20 | private function pickRouter() |
21 | 21 | { |
22 | - $singleton=core(); |
|
23 | - $singleton->routerSpecifications['router']=(isset($singleton->pick)) ? $singleton->pick[0] : $singleton->routerResult; |
|
22 | + $singleton = core(); |
|
23 | + $singleton->routerSpecifications['router'] = (isset($singleton->pick)) ? $singleton->pick[0] : $singleton->routerResult; |
|
24 | 24 | } |
25 | 25 | |
26 | 26 | /** |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | //These are the customizations that are available in the routerSpecification object. |
33 | 33 | //By running these individually, we assign reference values to the router variable, |
34 | 34 | //which is the actual kernel object, so route customization takes place. |
35 | - return $this->routerProcess(function($router){ |
|
35 | + return $this->routerProcess(function($router) { |
|
36 | 36 | return $router; |
37 | 37 | }); |
38 | 38 | } |
@@ -44,17 +44,17 @@ discard block |
||
44 | 44 | private function routerProcess(callable $callback) |
45 | 45 | { |
46 | 46 | //After running the router specification sequence one by one, we collect reference values for the kernel router. |
47 | - array_walk($this->routerSpecification,[$this,'routerSpecification']); |
|
47 | + array_walk($this->routerSpecification, [$this, 'routerSpecification']); |
|
48 | 48 | |
49 | 49 | //Then we return the routerSpecifications object that is assigned for the kernel to the router method. |
50 | - return call_user_func_array($callback,[core()->routerSpecifications['router']]); |
|
50 | + return call_user_func_array($callback, [core()->routerSpecifications['router']]); |
|
51 | 51 | } |
52 | 52 | |
53 | 53 | /** |
54 | 54 | * @param $specification |
55 | 55 | * @param $key |
56 | 56 | */ |
57 | - private function routerSpecification($specification,$key) |
|
57 | + private function routerSpecification($specification, $key) |
|
58 | 58 | { |
59 | 59 | $this->{$specification}(); |
60 | 60 | } |
@@ -71,8 +71,8 @@ discard block |
||
71 | 71 | //if there is no singleton pick |
72 | 72 | //If this is the case, we collect these values and assign them to the router variable. |
73 | 73 | //if it is not, the router will send the default value to the output. |
74 | - if(!isset($singleton->pick)){ |
|
75 | - $singleton->routerSpecifications['router']=(isset($singleton->stack)) ? $singleton->stack : $singleton->routerResult; |
|
74 | + if (!isset($singleton->pick)) { |
|
75 | + $singleton->routerSpecifications['router'] = (isset($singleton->stack)) ? $singleton->stack : $singleton->routerResult; |
|
76 | 76 | } |
77 | 77 | } |
78 | 78 |
@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | public static function delete(...$params) : void |
16 | 16 | { |
17 | 17 | // the DELETE method deletes the specified resource. |
18 | - static::setRoute($params,__FUNCTION__,static::getTracePath()); |
|
18 | + static::setRoute($params, __FUNCTION__, static::getTracePath()); |
|
19 | 19 | } |
20 | 20 | |
21 | 21 | /** |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | { |
29 | 29 | // the GET method requests a representation of the specified resource. |
30 | 30 | // Requests using GET should only retrieve data. |
31 | - static::setRoute($params,__FUNCTION__,static::getTracePath()); |
|
31 | + static::setRoute($params, __FUNCTION__, static::getTracePath()); |
|
32 | 32 | } |
33 | 33 | |
34 | 34 | /** |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | { |
59 | 59 | // the POST method is used to submit an entity to the specified resource, |
60 | 60 | // often causing a change in state or side effects on the server. |
61 | - static::setRoute($params,__FUNCTION__,static::getTracePath()); |
|
61 | + static::setRoute($params, __FUNCTION__, static::getTracePath()); |
|
62 | 62 | } |
63 | 63 | |
64 | 64 | /** |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | { |
72 | 72 | // the PUT method replaces all current representations of |
73 | 73 | // the target resource with the request payload. |
74 | - static::setRoute($params,__FUNCTION__,static::getTracePath()); |
|
74 | + static::setRoute($params, __FUNCTION__, static::getTracePath()); |
|
75 | 75 | } |
76 | 76 | |
77 | 77 | /** |
@@ -25,7 +25,7 @@ |
||
25 | 25 | * @param bool $objectReturn |
26 | 26 | * @return mixed |
27 | 27 | */ |
28 | - public function login($credentials=array(),$objectReturn=false); |
|
28 | + public function login($credentials = array(), $objectReturn = false); |
|
29 | 29 | |
30 | 30 | /** |
31 | 31 | * @return mixed |
@@ -12,20 +12,20 @@ discard block |
||
12 | 12 | /** |
13 | 13 | * @var bool |
14 | 14 | */ |
15 | - protected $using=false; |
|
15 | + protected $using = false; |
|
16 | 16 | |
17 | 17 | /** |
18 | 18 | * AuthLoginManager constructor. |
19 | 19 | * @param $credentials |
20 | 20 | * @param \Resta\Authenticate\AuthenticateProvider $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->using); |
|
28 | + $this->credentials = new AuthLoginCredentialsManager($this->getCredentials($credentials), $this->using); |
|
29 | 29 | |
30 | 30 | //query login |
31 | 31 | $this->loginProcess(); |
@@ -39,9 +39,9 @@ discard block |
||
39 | 39 | // if the user is not going to use the config setting, |
40 | 40 | // then in this case it can attempt to login by sending parameters |
41 | 41 | // as an array to the login method. |
42 | - if(is_array($credentials) && count($credentials)){ |
|
42 | + if (is_array($credentials) && count($credentials)) { |
|
43 | 43 | |
44 | - $this->using=true; |
|
44 | + $this->using = true; |
|
45 | 45 | return $credentials; |
46 | 46 | } |
47 | 47 |