@@ -24,29 +24,29 @@ discard block |
||
| 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 | |
@@ -88,7 +88,7 @@ discard block |
||
| 88 | 88 | private static function builder($service) |
| 89 | 89 | {
|
| 90 | 90 | //we are making a namespace assignment for the builder. |
| 91 | - $builder=app()->namespace()->builder().'\BuilderMap'; |
|
| 91 | + $builder = app()->namespace()->builder().'\BuilderMap'; |
|
| 92 | 92 | |
| 93 | 93 | //we are getting builder instance. |
| 94 | 94 | return app()->resolve($builder); |
@@ -116,16 +116,16 @@ discard block |
||
| 116 | 116 | * @param array $bind |
| 117 | 117 | * @return mixed |
| 118 | 118 | */ |
| 119 | - public function container($instance,$class,$bind=array()) |
|
| 119 | + public function container($instance, $class, $bind = array()) |
|
| 120 | 120 | {
|
| 121 | - if(!property_exists($instance->container(),$class)){
|
|
| 121 | + if (!property_exists($instance->container(), $class)) {
|
|
| 122 | 122 | throw new \InvalidArgumentException('container object false for ('.$class.') object');
|
| 123 | 123 | } |
| 124 | 124 | |
| 125 | - $container=$instance->container()->{$class};
|
|
| 125 | + $container = $instance->container()->{$class};
|
|
| 126 | 126 | |
| 127 | - if(!is_array($instance->container()->{$class}) AND Utils::isNamespaceExists($container)){
|
|
| 128 | - return $instance->resolve($container,$bind); |
|
| 127 | + if (!is_array($instance->container()->{$class}) AND Utils::isNamespaceExists($container)) {
|
|
| 128 | + return $instance->resolve($container, $bind); |
|
| 129 | 129 | } |
| 130 | 130 | return $instance->container()->{$class};
|
| 131 | 131 | } |
@@ -135,8 +135,8 @@ discard block |
||
| 135 | 135 | */ |
| 136 | 136 | public function createAppInstance($object) |
| 137 | 137 | {
|
| 138 | - if(!defined('appInstance')){
|
|
| 139 | - define('appInstance',(base64_encode(serialize($object))));
|
|
| 138 | + if (!defined('appInstance')) {
|
|
| 139 | + define('appInstance', (base64_encode(serialize($object))));
|
|
| 140 | 140 | } |
| 141 | 141 | } |
| 142 | 142 | |
@@ -144,9 +144,9 @@ discard block |
||
| 144 | 144 | * @param array $arg |
| 145 | 145 | * @return mixed |
| 146 | 146 | */ |
| 147 | - private static function date($arg=array()) |
|
| 147 | + private static function date($arg = array()) |
|
| 148 | 148 | {
|
| 149 | - $locale = (count($arg)=="0") ? config('app.locale','en') : current($arg);
|
|
| 149 | + $locale = (count($arg)=="0") ? config('app.locale', 'en') : current($arg);
|
|
| 150 | 150 | |
| 151 | 151 | return app()->resolve(Date::class)->setLocale($locale); |
| 152 | 152 | } |
@@ -166,8 +166,8 @@ discard block |
||
| 166 | 166 | {
|
| 167 | 167 | //we save an instance for the entire application |
| 168 | 168 | //and add it to the helper file to be accessed from anywhere in the application. |
| 169 | - if(!isset(self::$instance['appInstance'])){
|
|
| 170 | - self::$instance['appInstance']=unserialize(base64_decode(appInstance)); |
|
| 169 | + if (!isset(self::$instance['appInstance'])) {
|
|
| 170 | + self::$instance['appInstance'] = unserialize(base64_decode(appInstance)); |
|
| 171 | 171 | return self::$instance['appInstance']; |
| 172 | 172 | } |
| 173 | 173 | return self::$instance['appInstance']; |
@@ -194,9 +194,9 @@ discard block |
||
| 194 | 194 | */ |
| 195 | 195 | private static function queue() |
| 196 | 196 | {
|
| 197 | - if(!isset(self::$instance['queue'])){
|
|
| 197 | + if (!isset(self::$instance['queue'])) {
|
|
| 198 | 198 | |
| 199 | - self::$instance['queue']=(new Queue()); |
|
| 199 | + self::$instance['queue'] = (new Queue()); |
|
| 200 | 200 | return self::$instance['queue']; |
| 201 | 201 | |
| 202 | 202 | } |
@@ -208,18 +208,18 @@ discard block |
||
| 208 | 208 | * @param bool $namespace |
| 209 | 209 | * @return string |
| 210 | 210 | */ |
| 211 | - public static function repository($service,$namespace=false) |
|
| 211 | + public static function repository($service, $namespace = false) |
|
| 212 | 212 | {
|
| 213 | 213 | //I can get the repository name from the magic method as a salt repository, |
| 214 | 214 | //after which we will edit it as an adapter namespace. |
| 215 | - $repositoryName=ucfirst(preg_replace('@Repository@is','',$service));
|
|
| 215 | + $repositoryName = ucfirst(preg_replace('@Repository@is', '', $service));
|
|
| 216 | 216 | |
| 217 | 217 | //If we then configure the name of the simple repository to be an adapter |
| 218 | 218 | //then we will give the user an example of the adapter class in each repository call. |
| 219 | 219 | $repositoryAdapterName = $repositoryName.'Adapter'; |
| 220 | 220 | $repositoryNamespace = app()->namespace()->repository().'\\'.$repositoryName.'\\'.$repositoryAdapterName; |
| 221 | 221 | |
| 222 | - if($namespace) return $repositoryNamespace; |
|
| 222 | + if ($namespace) return $repositoryNamespace; |
|
| 223 | 223 | |
| 224 | 224 | //and eventually we conclude the adapter class of the repository package as an instance. |
| 225 | 225 | return app()->resolve($repositoryNamespace)->adapter(); |
@@ -230,17 +230,17 @@ discard block |
||
| 230 | 230 | * @param $arg |
| 231 | 231 | * @return mixed |
| 232 | 232 | */ |
| 233 | - private static function source($service,$arg) |
|
| 233 | + private static function source($service, $arg) |
|
| 234 | 234 | {
|
| 235 | 235 | //get Source path |
| 236 | - $service=ucfirst($service); |
|
| 237 | - $getCalledClass=str_replace('\\'.class_basename($arg[0]),'',get_class($arg[0]));
|
|
| 238 | - $getCalledClass=class_basename($getCalledClass); |
|
| 236 | + $service = ucfirst($service); |
|
| 237 | + $getCalledClass = str_replace('\\'.class_basename($arg[0]), '', get_class($arg[0]));
|
|
| 238 | + $getCalledClass = class_basename($getCalledClass); |
|
| 239 | 239 | |
| 240 | - $service=str_replace($getCalledClass,'',$service); |
|
| 240 | + $service = str_replace($getCalledClass, '', $service); |
|
| 241 | 241 | |
| 242 | 242 | //run service for endpoint |
| 243 | - $serviceSource=StaticPathModel::appSourceEndpoint().'\\'.$getCalledClass.'\\'.$service.'\Main'; |
|
| 243 | + $serviceSource = StaticPathModel::appSourceEndpoint().'\\'.$getCalledClass.'\\'.$service.'\Main'; |
|
| 244 | 244 | return app()->resolve($serviceSource); |
| 245 | 245 | } |
| 246 | 246 | |
@@ -249,9 +249,9 @@ discard block |
||
| 249 | 249 | */ |
| 250 | 250 | public static function redis() |
| 251 | 251 | {
|
| 252 | - if(!isset(self::$instance['redis'])){
|
|
| 252 | + if (!isset(self::$instance['redis'])) {
|
|
| 253 | 253 | |
| 254 | - self::$instance['redis']=(new Redis())->client(); |
|
| 254 | + self::$instance['redis'] = (new Redis())->client(); |
|
| 255 | 255 | return self::$instance['redis']; |
| 256 | 256 | |
| 257 | 257 | } |
@@ -262,13 +262,13 @@ discard block |
||
| 262 | 262 | * @param null $param |
| 263 | 263 | * @return array|null|string |
| 264 | 264 | */ |
| 265 | - public function route($param=null) |
|
| 265 | + public function route($param = null) |
|
| 266 | 266 | {
|
| 267 | - $kernel=self::getAppInstance()->kernel; |
|
| 267 | + $kernel = self::getAppInstance()->kernel; |
|
| 268 | 268 | |
| 269 | - $saltRouteParameters=$kernel->routeParameters; |
|
| 269 | + $saltRouteParameters = $kernel->routeParameters; |
|
| 270 | 270 | |
| 271 | - if($param===null){
|
|
| 271 | + if ($param===null) {
|
|
| 272 | 272 | return $saltRouteParameters; |
| 273 | 273 | } |
| 274 | 274 | |
@@ -284,20 +284,20 @@ discard block |
||
| 284 | 284 | * @param array $select |
| 285 | 285 | * @return mixed|string |
| 286 | 286 | */ |
| 287 | - public function translator($data,$select=array()) |
|
| 287 | + public function translator($data, $select = array()) |
|
| 288 | 288 | {
|
| 289 | - $lang=(new Lingua(path()->appLanguage())); |
|
| 289 | + $lang = (new Lingua(path()->appLanguage())); |
|
| 290 | 290 | |
| 291 | - if(self::app()->has('locale')){
|
|
| 291 | + if (self::app()->has('locale')) {
|
|
| 292 | 292 | $defaultLocale = self::app()->get('locale');
|
| 293 | 293 | } |
| 294 | - else{
|
|
| 294 | + else {
|
|
| 295 | 295 | $defaultLocale = config('app.locale');
|
| 296 | 296 | } |
| 297 | 297 | |
| 298 | 298 | |
| 299 | - if(count($select)){
|
|
| 300 | - return $lang->include(['default'])->locale($defaultLocale)->get($data,$select); |
|
| 299 | + if (count($select)) {
|
|
| 300 | + return $lang->include(['default'])->locale($defaultLocale)->get($data, $select); |
|
| 301 | 301 | } |
| 302 | 302 | |
| 303 | 303 | return $lang->include(['default'])->locale($defaultLocale)->get($data); |
@@ -219,7 +219,9 @@ discard block |
||
| 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 |
||
| 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 | |
@@ -14,7 +14,7 @@ |
||
| 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 |
@@ -31,7 +31,7 @@ discard block |
||
| 31 | 31 | */ |
| 32 | 32 | protected function getAutoGenerators() |
| 33 | 33 | {
|
| 34 | - if(property_exists($this,'auto_generators')){
|
|
| 34 | + if (property_exists($this, 'auto_generators')) {
|
|
| 35 | 35 | return $this->auto_generators; |
| 36 | 36 | } |
| 37 | 37 | return []; |
@@ -45,7 +45,7 @@ discard block |
||
| 45 | 45 | */ |
| 46 | 46 | protected function getAutoGeneratorsDontOverwrite() |
| 47 | 47 | {
|
| 48 | - if(property_exists($this,'auto_generators_dont_overwrite')){
|
|
| 48 | + if (property_exists($this, 'auto_generators_dont_overwrite')) {
|
|
| 49 | 49 | return $this->auto_generators_dont_overwrite; |
| 50 | 50 | } |
| 51 | 51 | return []; |
@@ -59,7 +59,7 @@ discard block |
||
| 59 | 59 | */ |
| 60 | 60 | protected function getClientObjects() |
| 61 | 61 | {
|
| 62 | - return array_diff_key($this->getObjects(),['inputs'=>[]]); |
|
| 62 | + return array_diff_key($this->getObjects(), ['inputs'=>[]]); |
|
| 63 | 63 | } |
| 64 | 64 | |
| 65 | 65 | /** |
@@ -69,7 +69,7 @@ discard block |
||
| 69 | 69 | */ |
| 70 | 70 | protected function getGenerators() |
| 71 | 71 | {
|
| 72 | - if(property_exists($this,'generators')){
|
|
| 72 | + if (property_exists($this, 'generators')) {
|
|
| 73 | 73 | return $this->generators; |
| 74 | 74 | } |
| 75 | 75 | return []; |
@@ -83,7 +83,7 @@ discard block |
||
| 83 | 83 | */ |
| 84 | 84 | protected function getGeneratorsDontOverwrite() |
| 85 | 85 | {
|
| 86 | - if(property_exists($this,'generators_dont_overwrite')){
|
|
| 86 | + if (property_exists($this, 'generators_dont_overwrite')) {
|
|
| 87 | 87 | return $this->generators_dont_overwrite; |
| 88 | 88 | } |
| 89 | 89 | return []; |
@@ -22,7 +22,7 @@ discard block |
||
| 22 | 22 | * @param $key |
| 23 | 23 | * @return mixed |
| 24 | 24 | */ |
| 25 | - abstract function annotation($method,$key); |
|
| 25 | + abstract function annotation($method, $key); |
|
| 26 | 26 | |
| 27 | 27 | /** |
| 28 | 28 | * get input values from request object |
@@ -52,7 +52,7 @@ discard block |
||
| 52 | 52 | * |
| 53 | 53 | * @param $reflection |
| 54 | 54 | */ |
| 55 | - public function setReflection($reflection){
|
|
| 55 | + public function setReflection($reflection) {
|
|
| 56 | 56 | |
| 57 | 57 | $this->request = ClosureDispatcher::bind($reflection); |
| 58 | 58 | } |
@@ -33,9 +33,9 @@ |
||
| 33 | 33 | {
|
| 34 | 34 | $inputs = $this->app->get($this->method); |
| 35 | 35 | |
| 36 | - $content = json_decode($this->app['request']->getContent(),1); |
|
| 36 | + $content = json_decode($this->app['request']->getContent(), 1); |
|
| 37 | 37 | |
| 38 | - if(is_array($inputs) && count($inputs)){
|
|
| 38 | + if (is_array($inputs) && count($inputs)) {
|
|
| 39 | 39 | return $inputs; |
| 40 | 40 | } |
| 41 | 41 | |
@@ -32,7 +32,7 @@ discard block |
||
| 32 | 32 | /** |
| 33 | 33 | * @var array |
| 34 | 34 | */ |
| 35 | - public $commandRule=['name','client']; |
|
| 35 | + public $commandRule = ['name', 'client']; |
|
| 36 | 36 | |
| 37 | 37 | /** |
| 38 | 38 | * @method create |
@@ -54,23 +54,23 @@ discard block |
||
| 54 | 54 | //set project directory |
| 55 | 55 | $this->file->makeDirectory($this); |
| 56 | 56 | |
| 57 | - if(!file_exists($manager = $this->directory['clientNameDir'].'/'.$name.'Manager.php')){
|
|
| 57 | + if (!file_exists($manager = $this->directory['clientNameDir'].'/'.$name.'Manager.php')) {
|
|
| 58 | 58 | $this->touch['client/manager'] = $manager; |
| 59 | 59 | } |
| 60 | 60 | |
| 61 | - if(!file_exists($this->directory['clientNameCreate'].'/Client.php')){
|
|
| 61 | + if (!file_exists($this->directory['clientNameCreate'].'/Client.php')) {
|
|
| 62 | 62 | $this->touch['client/client'] = $this->directory['clientNameCreate'].'/Client.php'; |
| 63 | 63 | $this->touch['client/clientGenerator'] = $this->directory['clientNameCreate'].'/ClientGenerator.php'; |
| 64 | 64 | } |
| 65 | 65 | |
| 66 | 66 | $clientSourceNamespace = Utils::getNamespace($this->directory['clientSource'].'/'.$client.'.php'); |
| 67 | 67 | |
| 68 | - if(!file_exists($clientSourceName = $this->directory['clientSource'].'/'.$client.'.php')){
|
|
| 68 | + if (!file_exists($clientSourceName = $this->directory['clientSource'].'/'.$client.'.php')) {
|
|
| 69 | 69 | $this->touch['client/source'] = $clientSourceName.''; |
| 70 | 70 | //$this->touch['client/sourcegenerator'] = $this->directory['clientSource'].'/'.$client.'Generator.php'; |
| 71 | 71 | } |
| 72 | 72 | |
| 73 | - if(!file_exists($this->directory['clientNameCreate'].'/ClientProvider.php')){
|
|
| 73 | + if (!file_exists($this->directory['clientNameCreate'].'/ClientProvider.php')) {
|
|
| 74 | 74 | $this->touch['client/clientProvider'] = $this->directory['clientNameCreate'].'/ClientProvider.php'; |
| 75 | 75 | } |
| 76 | 76 | |
@@ -84,13 +84,13 @@ discard block |
||
| 84 | 84 | |
| 85 | 85 | $nameGeneratorNamespace = Utils::getNamespace($managerPath = $this->directory['clientNameDir'].''.DIRECTORY_SEPARATOR.''.$nameManager.'.php'); |
| 86 | 86 | |
| 87 | - $generator = new Generator(path()->version(),'ClientManager'); |
|
| 87 | + $generator = new Generator(path()->version(), 'ClientManager'); |
|
| 88 | 88 | |
| 89 | 89 | $clientManager = app()->namespace()->version().'\\ClientManager'; |
| 90 | 90 | |
| 91 | 91 | $clientManagerResolve = new $clientManager; |
| 92 | 92 | |
| 93 | - if(!method_exists($clientManagerResolve,strtolower($name))){
|
|
| 93 | + if (!method_exists($clientManagerResolve, strtolower($name))) {
|
|
| 94 | 94 | |
| 95 | 95 | $generator->createMethod([ |
| 96 | 96 | strtolower($name) |
@@ -121,11 +121,11 @@ discard block |
||
| 121 | 121 | |
| 122 | 122 | } |
| 123 | 123 | |
| 124 | - $nameGenerator = new Generator($this->directory['clientNameDir'],$name.'Manager'); |
|
| 124 | + $nameGenerator = new Generator($this->directory['clientNameDir'], $name.'Manager'); |
|
| 125 | 125 | |
| 126 | 126 | $nameGeneratorNamespaceResolve = new $nameGeneratorNamespace; |
| 127 | 127 | |
| 128 | - if(!method_exists($nameGeneratorNamespaceResolve,strtolower($client))){
|
|
| 128 | + if (!method_exists($nameGeneratorNamespaceResolve, strtolower($client))) {
|
|
| 129 | 129 | |
| 130 | 130 | $nameGenerator->createMethod([ |
| 131 | 131 | strtolower($client) |
@@ -27,13 +27,13 @@ discard block |
||
| 27 | 27 | //the auto service to be called. |
| 28 | 28 | return ClosureDispatcher::bind($controllerInstance)->call(function() use($controllerInstance){
|
| 29 | 29 | |
| 30 | - if(property_exists($controllerInstance,'response')){
|
|
| 30 | + if (property_exists($controllerInstance, 'response')) {
|
|
| 31 | 31 | return $controllerInstance->response; |
| 32 | 32 | } |
| 33 | 33 | |
| 34 | 34 | // if the client wishes, |
| 35 | 35 | // data can be returned in the supported format. |
| 36 | - if(app()->has('clientResponseType')){
|
|
| 36 | + if (app()->has('clientResponseType')) {
|
|
| 37 | 37 | return app()->get('clientResponseType');
|
| 38 | 38 | } |
| 39 | 39 | |
@@ -73,8 +73,7 @@ discard block |
||
| 73 | 73 | {
|
| 74 | 74 | //we get the response type by checking the instanceController object from the router. |
| 75 | 75 | //Each type of response is in the base class in project directory. |
| 76 | - return ($this->getControllerInstance()===null) ? core()->responseType : |
|
| 77 | - $this->appResponseType(); |
|
| 76 | + return ($this->getControllerInstance()===null) ? core()->responseType : $this->appResponseType(); |
|
| 78 | 77 | } |
| 79 | 78 | |
| 80 | 79 | /** |
@@ -85,19 +84,19 @@ discard block |
||
| 85 | 84 | public function handle() |
| 86 | 85 | {
|
| 87 | 86 | //definition for singleton instance |
| 88 | - define ('responseApp',true);
|
|
| 87 | + define('responseApp', true);
|
|
| 89 | 88 | |
| 90 | 89 | //get out putter for response |
| 91 | 90 | $formatter = $this->formatter(); |
| 92 | 91 | |
| 93 | 92 | //if out putter is not null |
| 94 | - if(Utils::isNamespaceExists($formatter)){
|
|
| 93 | + if (Utils::isNamespaceExists($formatter)) {
|
|
| 95 | 94 | |
| 96 | 95 | //We resolve the response via the service container |
| 97 | 96 | //and run the handle method. |
| 98 | 97 | $result = app()->resolve($formatter)->{$this->getResponseKind()}($this->getOutPutter());
|
| 99 | 98 | |
| 100 | - $this->app->register('result',$result);
|
|
| 99 | + $this->app->register('result', $result);
|
|
| 101 | 100 | } |
| 102 | 101 | } |
| 103 | 102 | |
@@ -107,7 +106,7 @@ discard block |
||
| 107 | 106 | * @param array $data |
| 108 | 107 | * @return array |
| 109 | 108 | */ |
| 110 | - public function outputFormatter($data=array()) |
|
| 109 | + public function outputFormatter($data = array()) |
|
| 111 | 110 | {
|
| 112 | 111 | $dataCapsule = config('response.data');
|
| 113 | 112 | |
@@ -72,8 +72,7 @@ discard block |
||
| 72 | 72 | //catch exception |
| 73 | 73 | exception($this->exceptionParams[$key]['name'],$keyParams) |
| 74 | 74 | ->unexpectedValue($this->exceptionParams[$key]['name'].' input value is not valid as format ('.$data.')');
|
| 75 | - } |
|
| 76 | - else{
|
|
| 75 | + } else{
|
|
| 77 | 76 | //catch exception |
| 78 | 77 | exception()->unexpectedValue($key.' input value is not valid as format ('.$data.')');
|
| 79 | 78 | } |
@@ -136,16 +135,14 @@ discard block |
||
| 136 | 135 | } |
| 137 | 136 | } |
| 138 | 137 | |
| 139 | - } |
|
| 140 | - else{
|
|
| 138 | + } else{
|
|
| 141 | 139 | if(!preg_match('@'.$regex[1].'@is',$this->inputsValue)){
|
| 142 | 140 | $this->catchException($key,$regex[1]); |
| 143 | 141 | } |
| 144 | 142 | } |
| 145 | 143 | |
| 146 | 144 | } |
| 147 | - } |
|
| 148 | - else{
|
|
| 145 | + } else{
|
|
| 149 | 146 | |
| 150 | 147 | // we control the regex rule that evaluates when only string arrives. |
| 151 | 148 | if(!preg_match('@'.$regex[1].'@is',$this->inputs[$key])){
|
@@ -194,8 +191,7 @@ discard block |
||
| 194 | 191 | } |
| 195 | 192 | } |
| 196 | 193 | } |
| 197 | - } |
|
| 198 | - else{
|
|
| 194 | + } else{
|
|
| 199 | 195 | |
| 200 | 196 | foreach ($this->inputs[$key] as $key=>$input){
|
| 201 | 197 | |
@@ -208,8 +204,7 @@ discard block |
||
| 208 | 204 | } |
| 209 | 205 | } |
| 210 | 206 | } |
| 211 | - } |
|
| 212 | - else{
|
|
| 207 | + } else{
|
|
| 213 | 208 | |
| 214 | 209 | foreach ($input as $ikey=>$item){
|
| 215 | 210 | foreach($rules as $rule){
|
@@ -21,7 +21,7 @@ discard block |
||
| 21 | 21 | * @param ApplicationContracts $app |
| 22 | 22 | * @param $request |
| 23 | 23 | */ |
| 24 | - public function __construct(ApplicationContracts $app,$request) |
|
| 24 | + public function __construct(ApplicationContracts $app, $request) |
|
| 25 | 25 | {
|
| 26 | 26 | parent::__construct($app); |
| 27 | 27 | |
@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | * @param $key |
| 38 | 38 | * @return mixed|void |
| 39 | 39 | */ |
| 40 | - public function annotation($method,$key) |
|
| 40 | + public function annotation($method, $key) |
|
| 41 | 41 | {
|
| 42 | 42 | //set annotation value with getting reflection |
| 43 | 43 | $reflection = $this->getReflection('reflection')->reflectionMethodParams($method);
|
@@ -62,18 +62,18 @@ discard block |
||
| 62 | 62 | * @param string $key |
| 63 | 63 | * @param null|string $data |
| 64 | 64 | */ |
| 65 | - private function catchException($key,$data) |
|
| 65 | + private function catchException($key, $data) |
|
| 66 | 66 | {
|
| 67 | - if(isset($this->exceptionParams[$key])){
|
|
| 67 | + if (isset($this->exceptionParams[$key])) {
|
|
| 68 | 68 | |
| 69 | 69 | //get key params for exception params |
| 70 | 70 | $keyParams = ($this->exceptionParams[$key]['params']) ?? []; |
| 71 | 71 | |
| 72 | 72 | //catch exception |
| 73 | - exception($this->exceptionParams[$key]['name'],$keyParams) |
|
| 73 | + exception($this->exceptionParams[$key]['name'], $keyParams) |
|
| 74 | 74 | ->unexpectedValue($this->exceptionParams[$key]['name'].' input value is not valid as format ('.$data.')');
|
| 75 | 75 | } |
| 76 | - else{
|
|
| 76 | + else {
|
|
| 77 | 77 | //catch exception |
| 78 | 78 | exception()->unexpectedValue($key.' input value is not valid as format ('.$data.')');
|
| 79 | 79 | } |
@@ -86,23 +86,23 @@ discard block |
||
| 86 | 86 | */ |
| 87 | 87 | private function getException($key) |
| 88 | 88 | {
|
| 89 | - if(preg_match('@exception\((.*?)\)\r\n@is',$this->annotation,$exception)){
|
|
| 89 | + if (preg_match('@exception\((.*?)\)\r\n@is', $this->annotation, $exception)) {
|
|
| 90 | 90 | |
| 91 | - $exceptionSpaceExplode = explode(" ",$exception[1]);
|
|
| 91 | + $exceptionSpaceExplode = explode(" ", $exception[1]);
|
|
| 92 | 92 | |
| 93 | - foreach ($exceptionSpaceExplode as $exceptions){
|
|
| 94 | - $exceptionsDotExplode = explode(":",$exceptions);
|
|
| 93 | + foreach ($exceptionSpaceExplode as $exceptions) {
|
|
| 94 | + $exceptionsDotExplode = explode(":", $exceptions);
|
|
| 95 | 95 | $this->exceptionParams[$key][$exceptionsDotExplode[0]] = $exceptionsDotExplode[1]; |
| 96 | 96 | } |
| 97 | 97 | |
| 98 | - if(isset($this->exceptionParams[$key]['params'])){
|
|
| 98 | + if (isset($this->exceptionParams[$key]['params'])) {
|
|
| 99 | 99 | |
| 100 | - $paramsCommaExplode = explode(",",$this->exceptionParams[$key]['params']);
|
|
| 100 | + $paramsCommaExplode = explode(",", $this->exceptionParams[$key]['params']);
|
|
| 101 | 101 | unset($this->exceptionParams[$key]['params']); |
| 102 | 102 | |
| 103 | - foreach ($paramsCommaExplode as $params){
|
|
| 104 | - $paramsEqualExplode = explode("=",$params);
|
|
| 105 | - if(isset($paramsEqualExplode[0]) && isset($paramsEqualExplode[1])){
|
|
| 103 | + foreach ($paramsCommaExplode as $params) {
|
|
| 104 | + $paramsEqualExplode = explode("=", $params);
|
|
| 105 | + if (isset($paramsEqualExplode[0]) && isset($paramsEqualExplode[1])) {
|
|
| 106 | 106 | $this->exceptionParams[$key]['params'][$paramsEqualExplode[0]] = $paramsEqualExplode[1]; |
| 107 | 107 | } |
| 108 | 108 | } |
@@ -119,37 +119,37 @@ discard block |
||
| 119 | 119 | {
|
| 120 | 120 | // with the method based regex annotation, |
| 121 | 121 | // we check the rule definition for our requests. |
| 122 | - if(preg_match('@regex\((.*?)\)\r\n@is',$this->annotation,$regex)){
|
|
| 123 | - if(isset($this->inputs[$key])){
|
|
| 122 | + if (preg_match('@regex\((.*?)\)\r\n@is', $this->annotation, $regex)) {
|
|
| 123 | + if (isset($this->inputs[$key])) {
|
|
| 124 | 124 | |
| 125 | 125 | // for the definition of rules, |
| 126 | 126 | // our inputs can be array and in this case we offer array option for user comfort. |
| 127 | - if(is_array($this->inputs[$key])){
|
|
| 127 | + if (is_array($this->inputs[$key])) {
|
|
| 128 | 128 | |
| 129 | - foreach ($this->inputs[$key] as $this->inputsKey => $this->inputsValue){
|
|
| 129 | + foreach ($this->inputs[$key] as $this->inputsKey => $this->inputsValue) {
|
|
| 130 | 130 | |
| 131 | - if(is_array($this->inputsValue)){
|
|
| 131 | + if (is_array($this->inputsValue)) {
|
|
| 132 | 132 | |
| 133 | - foreach ($this->inputsValue as $inputsValueKey => $inputsValueItem){
|
|
| 134 | - if(!preg_match('@'.$regex[1].'@is',$inputsValueItem)){
|
|
| 135 | - $this->catchException($key,$regex[1]); |
|
| 133 | + foreach ($this->inputsValue as $inputsValueKey => $inputsValueItem) {
|
|
| 134 | + if (!preg_match('@'.$regex[1].'@is', $inputsValueItem)) {
|
|
| 135 | + $this->catchException($key, $regex[1]); |
|
| 136 | 136 | } |
| 137 | 137 | } |
| 138 | 138 | |
| 139 | 139 | } |
| 140 | - else{
|
|
| 141 | - if(!preg_match('@'.$regex[1].'@is',$this->inputsValue)){
|
|
| 142 | - $this->catchException($key,$regex[1]); |
|
| 140 | + else {
|
|
| 141 | + if (!preg_match('@'.$regex[1].'@is', $this->inputsValue)) {
|
|
| 142 | + $this->catchException($key, $regex[1]); |
|
| 143 | 143 | } |
| 144 | 144 | } |
| 145 | 145 | |
| 146 | 146 | } |
| 147 | 147 | } |
| 148 | - else{
|
|
| 148 | + else {
|
|
| 149 | 149 | |
| 150 | 150 | // we control the regex rule that evaluates when only string arrives. |
| 151 | - if(!preg_match('@'.$regex[1].'@is',$this->inputs[$key])){
|
|
| 152 | - $this->catchException($key,$regex[1]); |
|
| 151 | + if (!preg_match('@'.$regex[1].'@is', $this->inputs[$key])) {
|
|
| 152 | + $this->catchException($key, $regex[1]); |
|
| 153 | 153 | } |
| 154 | 154 | } |
| 155 | 155 | } |
@@ -164,9 +164,9 @@ discard block |
||
| 164 | 164 | */ |
| 165 | 165 | private function getRemove($key) |
| 166 | 166 | {
|
| 167 | - if(preg_match('@remove\((.*?)\)\r\n@is',$this->annotation,$remove)){
|
|
| 168 | - if(isset($this->inputs[$key])){
|
|
| 169 | - if(preg_match('@'.$remove[1].'@is',$this->inputs[$key])){
|
|
| 167 | + if (preg_match('@remove\((.*?)\)\r\n@is', $this->annotation, $remove)) {
|
|
| 168 | + if (isset($this->inputs[$key])) {
|
|
| 169 | + if (preg_match('@'.$remove[1].'@is', $this->inputs[$key])) {
|
|
| 170 | 170 | unset($this->inputs[$key]); |
| 171 | 171 | } |
| 172 | 172 | } |
@@ -180,42 +180,42 @@ discard block |
||
| 180 | 180 | */ |
| 181 | 181 | private function getRules($key) |
| 182 | 182 | {
|
| 183 | - if(preg_match('@rule\((.*?)\)\r\n@is',$this->annotation,$rule)){
|
|
| 183 | + if (preg_match('@rule\((.*?)\)\r\n@is', $this->annotation, $rule)) {
|
|
| 184 | 184 | |
| 185 | 185 | $requestRules = $this->getReflection('rules');
|
| 186 | 186 | |
| 187 | - $rules = explode(":",$rule[1]);
|
|
| 188 | - if(isset($this->inputs[$key]) && !is_array($this->inputs[$key])){
|
|
| 189 | - foreach($rules as $rule){
|
|
| 190 | - if(isset($requestRules[$rule])){
|
|
| 191 | - if(!preg_match('@'.$requestRules[$rule].'@',$this->inputs[$key])){
|
|
| 192 | - exception($rule,['key'=>$this->inputs[$key]]) |
|
| 187 | + $rules = explode(":", $rule[1]);
|
|
| 188 | + if (isset($this->inputs[$key]) && !is_array($this->inputs[$key])) {
|
|
| 189 | + foreach ($rules as $rule) {
|
|
| 190 | + if (isset($requestRules[$rule])) {
|
|
| 191 | + if (!preg_match('@'.$requestRules[$rule].'@', $this->inputs[$key])) {
|
|
| 192 | + exception($rule, ['key'=>$this->inputs[$key]]) |
|
| 193 | 193 | ->invalidArgument($this->inputs[$key].' input value is not valid for '.$rule.' request rule'); |
| 194 | 194 | } |
| 195 | 195 | } |
| 196 | 196 | } |
| 197 | 197 | } |
| 198 | - else{
|
|
| 198 | + else {
|
|
| 199 | 199 | |
| 200 | - foreach ($this->inputs[$key] as $key=>$input){
|
|
| 200 | + foreach ($this->inputs[$key] as $key=>$input) {
|
|
| 201 | 201 | |
| 202 | - if(!is_array($input)){
|
|
| 203 | - foreach($rules as $rule){
|
|
| 204 | - if(isset($requestRules[$rule])){
|
|
| 205 | - if(!preg_match('@'.$requestRules[$rule].'@',$input)){
|
|
| 206 | - exception($rule,['key'=>$input]) |
|
| 202 | + if (!is_array($input)) {
|
|
| 203 | + foreach ($rules as $rule) {
|
|
| 204 | + if (isset($requestRules[$rule])) {
|
|
| 205 | + if (!preg_match('@'.$requestRules[$rule].'@', $input)) {
|
|
| 206 | + exception($rule, ['key'=>$input]) |
|
| 207 | 207 | ->invalidArgument($input.' input value is not valid for '.$rule.' request rule'); |
| 208 | 208 | } |
| 209 | 209 | } |
| 210 | 210 | } |
| 211 | 211 | } |
| 212 | - else{
|
|
| 212 | + else {
|
|
| 213 | 213 | |
| 214 | - foreach ($input as $ikey=>$item){
|
|
| 215 | - foreach($rules as $rule){
|
|
| 216 | - if(isset($requestRules[$rule])){
|
|
| 217 | - if(!preg_match('@'.$requestRules[$rule].'@',$item)){
|
|
| 218 | - exception($rule,['key'=>$item]) |
|
| 214 | + foreach ($input as $ikey=>$item) {
|
|
| 215 | + foreach ($rules as $rule) {
|
|
| 216 | + if (isset($requestRules[$rule])) {
|
|
| 217 | + if (!preg_match('@'.$requestRules[$rule].'@', $item)) {
|
|
| 218 | + exception($rule, ['key'=>$item]) |
|
| 219 | 219 | ->invalidArgument($item.' input value is not valid for '.$rule.' request rule'); |
| 220 | 220 | } |
| 221 | 221 | } |
@@ -8,89 +8,89 @@ |
||
| 8 | 8 | * @param null|string $msg |
| 9 | 9 | * @return mixed |
| 10 | 10 | */ |
| 11 | - public function accessDeniedHttpException($msg=null); |
|
| 11 | + public function accessDeniedHttpException($msg = null); |
|
| 12 | 12 | |
| 13 | 13 | /** |
| 14 | 14 | * @param null|string $msg |
| 15 | 15 | * @return mixed |
| 16 | 16 | */ |
| 17 | - public function invalidArgument($msg=null); |
|
| 17 | + public function invalidArgument($msg = null); |
|
| 18 | 18 | |
| 19 | 19 | /** |
| 20 | 20 | * @param null|string $msg |
| 21 | 21 | * @return mixed |
| 22 | 22 | */ |
| 23 | - public function badFunctionCall($msg=null); |
|
| 23 | + public function badFunctionCall($msg = null); |
|
| 24 | 24 | |
| 25 | 25 | /** |
| 26 | 26 | * @param null|string $msg |
| 27 | 27 | * @return mixed |
| 28 | 28 | */ |
| 29 | - public function badMethodCall($msg=null); |
|
| 29 | + public function badMethodCall($msg = null); |
|
| 30 | 30 | |
| 31 | 31 | /** |
| 32 | 32 | * @param null|string $msg |
| 33 | 33 | * @return mixed |
| 34 | 34 | */ |
| 35 | - public function domain($msg=null); |
|
| 35 | + public function domain($msg = null); |
|
| 36 | 36 | |
| 37 | 37 | /** |
| 38 | 38 | * @param null|string $msg |
| 39 | 39 | * @return mixed |
| 40 | 40 | */ |
| 41 | - public function length($msg=null); |
|
| 41 | + public function length($msg = null); |
|
| 42 | 42 | |
| 43 | 43 | /** |
| 44 | 44 | * @param null|string $msg |
| 45 | 45 | * @return mixed |
| 46 | 46 | */ |
| 47 | - public function logic($msg=null); |
|
| 47 | + public function logic($msg = null); |
|
| 48 | 48 | |
| 49 | 49 | /** |
| 50 | 50 | * @param null|string $msg |
| 51 | 51 | * @return mixed |
| 52 | 52 | */ |
| 53 | - public function notFoundException($msg=null); |
|
| 53 | + public function notFoundException($msg = null); |
|
| 54 | 54 | |
| 55 | 55 | /** |
| 56 | 56 | * @param null|string $msg |
| 57 | 57 | * @return mixed |
| 58 | 58 | */ |
| 59 | - public function fileNotFoundException($msg=null); |
|
| 59 | + public function fileNotFoundException($msg = null); |
|
| 60 | 60 | |
| 61 | 61 | /** |
| 62 | 62 | * @param null|string $msg |
| 63 | 63 | * @return mixed |
| 64 | 64 | */ |
| 65 | - public function outOfRange($msg=null); |
|
| 65 | + public function outOfRange($msg = null); |
|
| 66 | 66 | |
| 67 | 67 | /** |
| 68 | 68 | * @param null|string $msg |
| 69 | 69 | * @return mixed |
| 70 | 70 | */ |
| 71 | - public function overflow($msg=null); |
|
| 71 | + public function overflow($msg = null); |
|
| 72 | 72 | |
| 73 | 73 | /** |
| 74 | 74 | * @param null|string $msg |
| 75 | 75 | * @return mixed |
| 76 | 76 | */ |
| 77 | - public function range($msg=null); |
|
| 77 | + public function range($msg = null); |
|
| 78 | 78 | |
| 79 | 79 | /** |
| 80 | 80 | * @param null|string $msg |
| 81 | 81 | * @return mixed |
| 82 | 82 | */ |
| 83 | - public function runtime($msg=null); |
|
| 83 | + public function runtime($msg = null); |
|
| 84 | 84 | |
| 85 | 85 | /** |
| 86 | 86 | * @param null|string $msg |
| 87 | 87 | * @return mixed |
| 88 | 88 | */ |
| 89 | - public function underflow($msg=null); |
|
| 89 | + public function underflow($msg = null); |
|
| 90 | 90 | |
| 91 | 91 | /** |
| 92 | 92 | * @param null|string $msg |
| 93 | 93 | * @return mixed |
| 94 | 94 | */ |
| 95 | - public function unexpectedValue($msg=null); |
|
| 95 | + public function unexpectedValue($msg = null); |
|
| 96 | 96 | } |
| 97 | 97 | \ No newline at end of file |