Passed
Push — master ( 43c946...be9b76 )
by Php Easy Api
05:41
created
src/resta/EventDispatcher/EventDetached.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -21,19 +21,19 @@  discard block
 block discarded – undo
21 21
      * @param $event
22 22
      * @param $events
23 23
      */
24
-    protected function handlerDispatch($event,$events)
24
+    protected function handlerDispatch($event, $events)
25 25
     {
26 26
         $eventName = lcfirst(class_basename($event));
27 27
 
28
-        if(isset($events[$eventName])){
28
+        if (isset($events[$eventName])) {
29 29
 
30 30
             $listenerPath = app()->namespace()->optionalListeners();
31 31
 
32
-            foreach($events[$eventName] as $listeners){
32
+            foreach ($events[$eventName] as $listeners) {
33 33
 
34 34
                 $listenerClass = $listenerPath.'\\'.ucfirst($listeners);
35 35
 
36
-                if(Utils::isNamespaceExists($listenerClass)){
36
+                if (Utils::isNamespaceExists($listenerClass)) {
37 37
                     $this->app->resolve($listenerClass)->handle($event);
38 38
                 }
39 39
             }
@@ -47,11 +47,11 @@  discard block
 block discarded – undo
47 47
      * @param $eventName
48 48
      * @return null
49 49
      */
50
-    protected function handlerDispatchForString($event,$eventName)
50
+    protected function handlerDispatchForString($event, $eventName)
51 51
     {
52 52
         $listeners = $this->getListeners();
53 53
 
54
-        if(isset($listeners[$event][$eventName])){
54
+        if (isset($listeners[$event][$eventName])) {
55 55
             return $listeners[$event][$eventName];
56 56
         }
57 57
 
Please login to merge, or discard this patch.
src/resta/EventDispatcher/EventManager.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
      */
12 12
     public function getListeners()
13 13
     {
14
-        if(isset($this->app['events'])){
14
+        if (isset($this->app['events'])) {
15 15
             return $this->app['events'];
16 16
         }
17 17
         return $this->listen;
@@ -23,21 +23,21 @@  discard block
 block discarded – undo
23 23
      * @param $event
24 24
      * @return mixed|void
25 25
      */
26
-    public function dispatch($event,$eventName='default')
26
+    public function dispatch($event, $eventName = 'default')
27 27
     {
28 28
         //recorded events must be.
29
-        if(isset($this->app['events'])){
29
+        if (isset($this->app['events'])) {
30 30
 
31 31
             // in the logic of the events,
32 32
             // the default keyi mandatory.
33 33
             $events = $this->app['events']['events'] ?? ['default'=>[]];
34 34
 
35
-            if(is_object($event)){
36
-                return $this->handlerDispatch($event,$events[$eventName]);
35
+            if (is_object($event)) {
36
+                return $this->handlerDispatch($event, $events[$eventName]);
37 37
             }
38 38
         }
39 39
 
40
-        return $this->handlerDispatchForString($event,$eventName);
40
+        return $this->handlerDispatchForString($event, $eventName);
41 41
     }
42 42
 
43 43
     /**
@@ -48,10 +48,10 @@  discard block
 block discarded – undo
48 48
     public function handle()
49 49
     {
50 50
         //set constant event-dispatcher
51
-        define('event-dispatcher',true);
51
+        define('event-dispatcher', true);
52 52
 
53 53
         //we save to kernel object value of the event-dispatcher
54
-        $this->addListener('events','default',$this->getListeners());
54
+        $this->addListener('events', 'default', $this->getListeners());
55 55
     }
56 56
 }
57 57
 
Please login to merge, or discard this patch.
src/resta/Logger/LoggerProvider.php 1 patch
Spacing   +18 added lines, -19 removed lines patch added patch discarded remove patch
@@ -20,15 +20,15 @@  discard block
 block discarded – undo
20 20
      * @param callable $callback
21 21
      * @return mixed
22 22
      */
23
-    public function checkLoggerConfiguration($printer,callable $callback)
23
+    public function checkLoggerConfiguration($printer, callable $callback)
24 24
     {
25 25
         // logger service handler
26
-        if(config('app.logger')){
27
-            return $this->logHandler($printer,'access',$this->getLoggerType());
26
+        if (config('app.logger')) {
27
+            return $this->logHandler($printer, 'access', $this->getLoggerType());
28 28
         }
29 29
 
30 30
         //return closure object with printer
31
-        return call_user_func_array($callback,[$printer]);
31
+        return call_user_func_array($callback, [$printer]);
32 32
     }
33 33
 
34 34
     /**
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
     public function handle()
50 50
     {
51 51
         //set define for logger
52
-        define('logger',true);
52
+        define('logger', true);
53 53
 
54 54
         //we get the logger namespace value.
55 55
         $loggerNamespace = app()->namespace()->logger();
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
         // if the logger file does not exist
58 58
         // or request console is true
59 59
         // we throw a domain exception.
60
-        if(Utils::isNamespaceExists($loggerNamespace)){
60
+        if (Utils::isNamespaceExists($loggerNamespace)) {
61 61
 
62 62
             //We are getting the path to
63 63
             //the service log file in the project's version directory.
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
 
66 66
             // we send the resulting adapter property as
67 67
             // a reference to the bind automatic instance class.
68
-            $this->setLogger($appBase,$appBase->adapter,$this);
68
+            $this->setLogger($appBase, $appBase->adapter, $this);
69 69
         }
70 70
 
71 71
     }
@@ -78,16 +78,16 @@  discard block
 block discarded – undo
78 78
      * @param string $type
79 79
      * @return mixed
80 80
      */
81
-    public function logHandler($printer,$file="access",$type='info')
81
+    public function logHandler($printer, $file = "access", $type = 'info')
82 82
     {
83
-        if(isset($this->app['log'])){
83
+        if (isset($this->app['log'])) {
84 84
 
85 85
             //we get the log object that was previously assigned.
86 86
             $log = $this->app['log'];
87 87
 
88 88
             $base = current($log);
89 89
 
90
-            if($this->adapter!==null){
90
+            if ($this->adapter!==null) {
91 91
 
92 92
                 $log = [];
93 93
                 $log[$this->adapter] = $base;
@@ -99,17 +99,16 @@  discard block
 block discarded – undo
99 99
             // we call the method specified by the adapter in the service log class
100 100
             // and log the application in the customized mode for the application.
101 101
             // The service log class uses the monolog class.
102
-            if(method_exists($base,$adapter=key($log))){
102
+            if (method_exists($base, $adapter = key($log))) {
103 103
 
104 104
                 // this is very important.
105 105
                 // in the production log messages,
106 106
                 // we have to get the production log message kernel variable
107 107
                 // in order not to show an external error to the user
108 108
                 $logOutput = (isset($this->app['productionLogMessage'])) ?
109
-                    $this->app['productionLogMessage'] :
110
-                    $printer;
109
+                    $this->app['productionLogMessage'] : $printer;
111 110
 
112
-                call_user_func_array([$base,$adapter],[$logOutput,$file,$type]);
111
+                call_user_func_array([$base, $adapter], [$logOutput, $file, $type]);
113 112
             }
114 113
 
115 114
             //printer back
@@ -123,15 +122,15 @@  discard block
 block discarded – undo
123 122
      *
124 123
      * @param mixed ...$params
125 124
      */
126
-    public function setLogger(...$params){
125
+    public function setLogger(...$params) {
127 126
 
128 127
         // params list
129
-        [$base,$adapter,$loggerService] = $params;
128
+        [$base, $adapter, $loggerService] = $params;
130 129
 
131 130
         // we take the adapter attribute for the log log
132 131
         // from the service log class and save it to the kernel object.
133
-        $this->app->register('logger',app()->namespace()->logger());
134
-        $this->app->register('loggerService',$loggerService);
135
-        $this->app->register('log',$adapter,$base);
132
+        $this->app->register('logger', app()->namespace()->logger());
133
+        $this->app->register('loggerService', $loggerService);
134
+        $this->app->register('log', $adapter, $base);
136 135
     }
137 136
 }
138 137
\ No newline at end of file
Please login to merge, or discard this patch.
src/resta/Url/UrlParseParamResolved.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
         //check url parse data for exception
19 19
         $this->url = $app->urlList;
20 20
 
21
-        if(is_null($app->getPath())){
21
+        if (is_null($app->getPath())) {
22 22
             $this->exception($this->url);
23 23
         }
24 24
 
Please login to merge, or discard this patch.
src/resta/Url/UrlProvider.php 2 patches
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -125,8 +125,7 @@  discard block
 block discarded – undo
125 125
     {
126 126
         if(count($path)){
127 127
             $this->path = $path;
128
-        }
129
-        else{
128
+        } else{
130 129
             return Utils::getRequestPathInfo();
131 130
         }
132 131
     }
@@ -178,8 +177,7 @@  discard block
 block discarded – undo
178 177
         // and the value does not start with Vnumber, the version will definitely be formatted.
179 178
         if(isset($query[$versionKey]) && !preg_match('@V(\d+)@',$query[$versionKey])){
180 179
             $query = Arr::overwriteWith($query,[$versionKey=>'V1']);
181
-        }
182
-        else{
180
+        } else{
183 181
 
184 182
             if(!isset($query[$versionKey])){
185 183
                 $query[$versionKey] = 'V1';
Please login to merge, or discard this patch.
Spacing   +28 added lines, -28 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
     /**
22 22
      * @var array $urlNames
23 23
      */
24
-    protected $urlNames = ['project','version','endpoint','method'];
24
+    protected $urlNames = ['project', 'version', 'endpoint', 'method'];
25 25
 
26 26
     /**
27 27
      * assign url list
@@ -37,11 +37,11 @@  discard block
 block discarded – undo
37 37
 
38 38
         $parametersYaml = $this->app()->path()->app().'parameters.yaml';
39 39
 
40
-        if(isset($query[0]) && $this->app->has('parametersYaml')){
40
+        if (isset($query[0]) && $this->app->has('parametersYaml')) {
41 41
             $callParametersYaml = $this->app->get('parametersYaml');
42
-            if(isset($callParametersYaml['workingDir'])){
43
-                $parametersWorkingDir = explode('@',$callParametersYaml['workingDir']);
44
-                if($query[0]==$parametersWorkingDir[0]){
42
+            if (isset($callParametersYaml['workingDir'])) {
43
+                $parametersWorkingDir = explode('@', $callParametersYaml['workingDir']);
44
+                if ($query[0]==$parametersWorkingDir[0]) {
45 45
                     $query[0] = $parametersWorkingDir[1] ?? $query[0];
46 46
                 }
47 47
             }
@@ -51,25 +51,25 @@  discard block
 block discarded – undo
51 51
         // it will be formatted.
52 52
         $query = $this->queryFormatProcess($query);
53 53
 
54
-        foreach ($query as $key=>$value){
54
+        foreach ($query as $key=>$value) {
55 55
 
56 56
             //set url list for urlNames property
57
-            if(isset($this->urlNames[$key])){
58
-                $this->getUrlListValues($key,$value);
57
+            if (isset($this->urlNames[$key])) {
58
+                $this->getUrlListValues($key, $value);
59 59
             }
60 60
         }
61 61
 
62 62
         // If there is no method key in the urlList property,
63 63
         // then by default we assign the index to the method property.
64
-        if(!isset($this->urlList['method'])){
64
+        if (!isset($this->urlList['method'])) {
65 65
             $this->urlList['method'] = 'index';
66 66
         }
67 67
 
68 68
         //determines the endpoint method for your project
69
-        $this->urlList['parameters'] = array_slice($query,3);
69
+        $this->urlList['parameters'] = array_slice($query, 3);
70 70
 
71 71
         //url global instance
72
-        if($this->app->has('routeParameters')===false){
72
+        if ($this->app->has('routeParameters')===false) {
73 73
             $this->definitor($this->urlList);
74 74
         }
75 75
     }
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
 
87 87
         //convert array for query
88 88
         //we are removing the first empty element from the array due to the slash sign.
89
-        if(is_null($this->path)){
89
+        if (is_null($this->path)) {
90 90
             $query = $this->getRequestPathInfo();
91 91
         }
92 92
 
@@ -108,13 +108,13 @@  discard block
 block discarded – undo
108 108
      */
109 109
     public function definitor($urlList)
110 110
     {
111
-        define('version',$urlList['version']);
112
-        define('endpoint',$urlList['endpoint']);
113
-        define('app',$urlList['project']);
114
-        define('method',$urlList['method']);
111
+        define('version', $urlList['version']);
112
+        define('endpoint', $urlList['endpoint']);
113
+        define('app', $urlList['project']);
114
+        define('method', $urlList['method']);
115 115
 
116 116
         //route parameters kernel object register
117
-        $this->app->register('routeParameters',$urlList['parameters']);
117
+        $this->app->register('routeParameters', $urlList['parameters']);
118 118
     }
119 119
 
120 120
     /**
@@ -133,12 +133,12 @@  discard block
 block discarded – undo
133 133
      * @param array $path
134 134
      * @return array
135 135
      */
136
-    public function getRequestPathInfo($path=array())
136
+    public function getRequestPathInfo($path = array())
137 137
     {
138
-        if(count($path)){
138
+        if (count($path)) {
139 139
             $this->path = $path;
140 140
         }
141
-        else{
141
+        else {
142 142
             return Utils::getRequestPathInfo();
143 143
         }
144 144
     }
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
      * @param $key
150 150
      * @param $value
151 151
      */
152
-    private function getUrlListValues($key,$value)
152
+    private function getUrlListValues($key, $value)
153 153
     {
154 154
         //If the value from the url is an external value, the default format is applied.
155 155
         $this->urlList[$this->urlNames[$key]] = (strlen($value)>0) ? $value : null;
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
         $this->assignUrlList();
169 169
 
170 170
         //register to container urlComponent value
171
-        $this->app->register('urlComponent',$this->urlList);
171
+        $this->app->register('urlComponent', $this->urlList);
172 172
 
173 173
         //we make url parse resolving with resolved
174 174
         return (new UrlParseParamResolved)->urlParamResolve($this);
@@ -184,20 +184,20 @@  discard block
 block discarded – undo
184 184
     {
185 185
         // at urlNames property,
186 186
         // we get the key of the version value registered.
187
-        $versionKey = array_search('version',$this->urlNames);
187
+        $versionKey = array_search('version', $this->urlNames);
188 188
 
189 189
         // if the query array has a version key,
190 190
         // and the value does not start with Vnumber, the version will definitely be formatted.
191
-        if(isset($query[$versionKey]) && !preg_match('@V(\d+)@',$query[$versionKey])){
192
-            $query = Arr::overwriteWith($query,[$versionKey=>'V1']);
191
+        if (isset($query[$versionKey]) && !preg_match('@V(\d+)@', $query[$versionKey])) {
192
+            $query = Arr::overwriteWith($query, [$versionKey=>'V1']);
193 193
         }
194
-        else{
194
+        else {
195 195
 
196
-            if(!isset($query[$versionKey])){
196
+            if (!isset($query[$versionKey])) {
197 197
                 $query[$versionKey] = 'V1';
198 198
             }
199 199
 
200
-            if(!isset($query[$versionKey+1])){
200
+            if (!isset($query[$versionKey+1])) {
201 201
                 $query[$versionKey+1] = NULL;
202 202
             }
203 203
 
Please login to merge, or discard this patch.
src/resta/Response/Outputter/XmlOutputter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.
src/resta/Response/Outputter/JsonOutputter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
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');
Please login to merge, or discard this patch.
src/resta/Support/ClassAliasGroup.php 2 patches
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -7,32 +7,32 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -17,8 +17,8 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
Please login to merge, or discard this patch.
src/resta/Support/AppData/ServiceMiddlewareManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.