@@ -18,10 +18,10 @@ discard block |
||
18 | 18 | */ |
19 | 19 | private function dataIncludedForPrinter($printer) |
20 | 20 | { |
21 | - if(isset(core()->controllerWatch)){ |
|
21 | + if (isset(core()->controllerWatch)) { |
|
22 | 22 | |
23 | - $watch=core()->controllerWatch; |
|
24 | - return array_merge($printer,['watch'=>['memory'=>$watch['memory']]]); |
|
23 | + $watch = core()->controllerWatch; |
|
24 | + return array_merge($printer, ['watch'=>['memory'=>$watch['memory']]]); |
|
25 | 25 | } |
26 | 26 | |
27 | 27 | //return printer |
@@ -48,9 +48,9 @@ discard block |
||
48 | 48 | * @param array $data |
49 | 49 | * @return array |
50 | 50 | */ |
51 | - private function hateoasCapsule($data=array()) |
|
51 | + private function hateoasCapsule($data = array()) |
|
52 | 52 | { |
53 | - return (config('app.hateoas')) ? array_merge($data,config('hateoas')) : $data; |
|
53 | + return (config('app.hateoas')) ? array_merge($data, config('hateoas')) : $data; |
|
54 | 54 | } |
55 | 55 | |
56 | 56 | /** |
@@ -66,9 +66,9 @@ discard block |
||
66 | 66 | * @param callable $callback |
67 | 67 | * @return mixed |
68 | 68 | */ |
69 | - private function noInExceptionHateoas($output,callable $callback) |
|
69 | + private function noInExceptionHateoas($output, callable $callback) |
|
70 | 70 | { |
71 | - if(isset($output['success']) && false===$output['success']){ |
|
71 | + if (isset($output['success']) && false===$output['success']) { |
|
72 | 72 | return $output; |
73 | 73 | } |
74 | 74 | return call_user_func($callback); |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | { |
96 | 96 | //if the system throws an exception, |
97 | 97 | //we subtract the hateoas extension from the output value. |
98 | - $this->printer = $this->noInExceptionHateoas($output,function() use ($output){ |
|
98 | + $this->printer = $this->noInExceptionHateoas($output, function() use ($output){ |
|
99 | 99 | |
100 | 100 | return array_merge( |
101 | 101 | $this->metaAdd(), |
@@ -105,16 +105,16 @@ discard block |
||
105 | 105 | |
106 | 106 | // For the data to be included in the response, |
107 | 107 | // we go to the dataIncludedForPrinter method. |
108 | - $this->printer=$this->dataIncludedForPrinter($this->printer); |
|
108 | + $this->printer = $this->dataIncludedForPrinter($this->printer); |
|
109 | 109 | |
110 | 110 | // If the log feature is available on the kernel, |
111 | 111 | // we run the logger process. |
112 | - if(isset(core()->log)){ |
|
112 | + if (isset(core()->log)) { |
|
113 | 113 | |
114 | 114 | // we can run logging after checking |
115 | 115 | // the configuration for the logger process in the LoggerService class |
116 | 116 | // so that,If logging is not allowed in the main configuration file, we will not log. |
117 | - return core()->loggerService->checkLoggerConfiguration($this->printer,function($printer){ |
|
117 | + return core()->loggerService->checkLoggerConfiguration($this->printer, function($printer) { |
|
118 | 118 | return $printer; |
119 | 119 | }); |
120 | 120 | } |
@@ -10,7 +10,7 @@ |
||
10 | 10 | * @param $outputter |
11 | 11 | * @return string |
12 | 12 | */ |
13 | - public function handle($outputter){ |
|
13 | + public function handle($outputter) { |
|
14 | 14 | |
15 | 15 | header('Content-type:application/xml;charset=utf-8'); |
16 | 16 | return ArrayToXml::convert($outputter); |
@@ -10,7 +10,7 @@ |
||
10 | 10 | * @param $outputter |
11 | 11 | * @return string |
12 | 12 | */ |
13 | - public function handle($outputter){ |
|
13 | + public function handle($outputter) { |
|
14 | 14 | |
15 | 15 | //header set and symfony response call |
16 | 16 | header('Content-type:application/json;charset=utf-8'); |
@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | */ |
16 | 16 | public function __construct($app) |
17 | 17 | { |
18 | - $this->app=$app; |
|
18 | + $this->app = $app; |
|
19 | 19 | } |
20 | 20 | |
21 | 21 | /** |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | */ |
24 | 24 | public function json() |
25 | 25 | { |
26 | - $this->app->response='json'; |
|
26 | + $this->app->response = 'json'; |
|
27 | 27 | } |
28 | 28 | |
29 | 29 | /** |
@@ -31,6 +31,6 @@ discard block |
||
31 | 31 | */ |
32 | 32 | public function xml() |
33 | 33 | { |
34 | - $this->app->response='xml'; |
|
34 | + $this->app->response = 'xml'; |
|
35 | 35 | } |
36 | 36 | } |
37 | 37 | \ No newline at end of file |
@@ -7,32 +7,32 @@ |
||
7 | 7 | /** |
8 | 8 | * @return mixed |
9 | 9 | */ |
10 | - public function handle() |
|
11 | - { |
|
12 | - return $this->getConfigAliasGroup(); |
|
13 | - } |
|
10 | + public function handle() |
|
11 | + { |
|
12 | + return $this->getConfigAliasGroup(); |
|
13 | + } |
|
14 | 14 | |
15 | 15 | /** |
16 | 16 | * @return array |
17 | 17 | */ |
18 | - public function getConfigAliasGroup() |
|
19 | - { |
|
20 | - $aliasGroup=app()->namespace()->config().'\AliasGroup'; |
|
21 | - if(class_exists($aliasGroup)){ |
|
22 | - return app()->resolve($aliasGroup)->handle(); |
|
23 | - } |
|
24 | - return []; |
|
25 | - } |
|
18 | + public function getConfigAliasGroup() |
|
19 | + { |
|
20 | + $aliasGroup=app()->namespace()->config().'\AliasGroup'; |
|
21 | + if(class_exists($aliasGroup)){ |
|
22 | + return app()->resolve($aliasGroup)->handle(); |
|
23 | + } |
|
24 | + return []; |
|
25 | + } |
|
26 | 26 | |
27 | 27 | /** |
28 | 28 | * @param $object |
29 | 29 | * @param $name |
30 | 30 | * @return void |
31 | 31 | */ |
32 | - public static function setAlias($object,$name) |
|
33 | - { |
|
34 | - if((new $object) instanceof $name === false){ |
|
35 | - class_alias($object,$name); |
|
36 | - } |
|
37 | - } |
|
32 | + public static function setAlias($object,$name) |
|
33 | + { |
|
34 | + if((new $object) instanceof $name === false){ |
|
35 | + class_alias($object,$name); |
|
36 | + } |
|
37 | + } |
|
38 | 38 | } |
39 | 39 | \ No newline at end of file |
@@ -17,8 +17,8 @@ discard block |
||
17 | 17 | */ |
18 | 18 | public function getConfigAliasGroup() |
19 | 19 | { |
20 | - $aliasGroup=app()->namespace()->config().'\AliasGroup'; |
|
21 | - if(class_exists($aliasGroup)){ |
|
20 | + $aliasGroup = app()->namespace()->config().'\AliasGroup'; |
|
21 | + if (class_exists($aliasGroup)) { |
|
22 | 22 | return app()->resolve($aliasGroup)->handle(); |
23 | 23 | } |
24 | 24 | return []; |
@@ -29,10 +29,10 @@ discard block |
||
29 | 29 | * @param $name |
30 | 30 | * @return void |
31 | 31 | */ |
32 | - public static function setAlias($object,$name) |
|
32 | + public static function setAlias($object, $name) |
|
33 | 33 | { |
34 | - if((new $object) instanceof $name === false){ |
|
35 | - class_alias($object,$name); |
|
34 | + if ((new $object) instanceof $name===false) { |
|
35 | + class_alias($object, $name); |
|
36 | 36 | } |
37 | 37 | } |
38 | 38 | } |
39 | 39 | \ No newline at end of file |
@@ -31,7 +31,7 @@ |
||
31 | 31 | public function exclude() |
32 | 32 | { |
33 | 33 | return [ |
34 | - 'all'=>['hook','login','logout'] |
|
34 | + 'all'=>['hook', 'login', 'logout'] |
|
35 | 35 | ]; |
36 | 36 | } |
37 | 37 | } |
@@ -16,8 +16,8 @@ discard block |
||
16 | 16 | */ |
17 | 17 | public static function getSupportedVersions() |
18 | 18 | { |
19 | - if(self::checkSupportedVersions()){ |
|
20 | - static::$supportedVersions = array_merge(static::$supportedVersions,static::supportedVersions()); |
|
19 | + if (self::checkSupportedVersions()) { |
|
20 | + static::$supportedVersions = array_merge(static::$supportedVersions, static::supportedVersions()); |
|
21 | 21 | } |
22 | 22 | return static::$supportedVersions; |
23 | 23 | } |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | */ |
30 | 30 | private static function checkSupportedVersions() |
31 | 31 | { |
32 | - return method_exists(static::class,'supportedVersions') |
|
32 | + return method_exists(static::class, 'supportedVersions') |
|
33 | 33 | && is_array(static::supportedVersions()); |
34 | 34 | } |
35 | 35 | } |
36 | 36 | \ No newline at end of file |
@@ -7,14 +7,14 @@ |
||
7 | 7 | /** |
8 | 8 | * @var array $bootLoaders |
9 | 9 | */ |
10 | - protected static $bootLoaders = ['url','logger']; |
|
10 | + protected static $bootLoaders = ['url', 'logger']; |
|
11 | 11 | |
12 | 12 | /** |
13 | 13 | * load bootstrapper dependencies |
14 | 14 | * |
15 | 15 | * @param array $loaders |
16 | 16 | */ |
17 | - public static function bootLoader($loaders=array()) |
|
17 | + public static function bootLoader($loaders = array()) |
|
18 | 18 | { |
19 | 19 | app()->loadIfNotExistBoot($loaders); |
20 | 20 | } |
@@ -22,13 +22,13 @@ discard block |
||
22 | 22 | * @param $class |
23 | 23 | * @return mixed |
24 | 24 | */ |
25 | - public function macro($class) |
|
26 | - { |
|
27 | - $this->class = $class; |
|
28 | - $this->macro = $this; |
|
25 | + public function macro($class) |
|
26 | + { |
|
27 | + $this->class = $class; |
|
28 | + $this->macro = $this; |
|
29 | 29 | |
30 | - return $this; |
|
31 | - } |
|
30 | + return $this; |
|
31 | + } |
|
32 | 32 | |
33 | 33 | /** |
34 | 34 | * get macro property |
@@ -36,10 +36,10 @@ discard block |
||
36 | 36 | * @param $name |
37 | 37 | * @return mixed |
38 | 38 | */ |
39 | - public function __get($name) |
|
40 | - { |
|
41 | - return ClosureDispatcher::bind($this->class)->call(function() use($name){ |
|
42 | - return $this->{$name}; |
|
43 | - }); |
|
44 | - } |
|
39 | + public function __get($name) |
|
40 | + { |
|
41 | + return ClosureDispatcher::bind($this->class)->call(function() use($name){ |
|
42 | + return $this->{$name}; |
|
43 | + }); |
|
44 | + } |
|
45 | 45 | } |
46 | 46 | \ No newline at end of file |
@@ -24,7 +24,7 @@ |
||
24 | 24 | */ |
25 | 25 | public function macro($class) |
26 | 26 | { |
27 | - $this->class = $class; |
|
27 | + $this->class = $class; |
|
28 | 28 | $this->macro = $this; |
29 | 29 | |
30 | 30 | return $this; |