@@ -9,12 +9,12 @@ discard block |
||
9 | 9 | private function xmlToArrayRecursive($xml) { |
10 | 10 | $xml = (array) $xml; |
11 | 11 | |
12 | - if(empty($xml)) { |
|
12 | + if (empty($xml)) { |
|
13 | 13 | return null; |
14 | 14 | } |
15 | 15 | |
16 | 16 | foreach ($xml as $key => $val) { |
17 | - if (is_array($val)){ |
|
17 | + if (is_array($val)) { |
|
18 | 18 | $xml[$key] = $this->xmlToArray($val); |
19 | 19 | } else { |
20 | 20 | if ($val instanceof SimpleXMLElement) { |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | private function xmlToArray($xml) { |
33 | 33 | $xml = (array) $xml; |
34 | 34 | |
35 | - if(empty($xml)) { |
|
35 | + if (empty($xml)) { |
|
36 | 36 | return null; |
37 | 37 | } |
38 | 38 |
@@ -29,8 +29,8 @@ discard block |
||
29 | 29 | ]; |
30 | 30 | |
31 | 31 | protected $handlers = [ |
32 | - 'xml' => XmlHandler::class, |
|
33 | - 'json' => JsonHandler::class, |
|
32 | + 'xml' => XmlHandler::class, |
|
33 | + 'json' => JsonHandler::class, |
|
34 | 34 | ]; |
35 | 35 | |
36 | 36 | protected $collection; |
@@ -147,10 +147,10 @@ discard block |
||
147 | 147 | public function action($action, callable $callback) |
148 | 148 | { |
149 | 149 | |
150 | - extract($this->splitAction($action)); |
|
150 | + extract($this->splitAction($action)); |
|
151 | 151 | |
152 | - $action = $this->setAction($action); |
|
153 | - $this->setHandler($handler); |
|
152 | + $action = $this->setAction($action); |
|
153 | + $this->setHandler($handler); |
|
154 | 154 | |
155 | 155 | $action->injectionKernel($this); |
156 | 156 | call_user_func($callback, $action); |
@@ -180,7 +180,7 @@ discard block |
||
180 | 180 | try { |
181 | 181 | Assertion::regex($collection, '/[A-z]+Collection$/'); |
182 | 182 | } catch(AssertionFailedException $e) { |
183 | - throw new \Exception("Expected word 'Collection' in parameter method setCollection received : " . $e->getValue()); |
|
183 | + throw new \Exception("Expected word 'Collection' in parameter method setCollection received : " . $e->getValue()); |
|
184 | 184 | } |
185 | 185 | |
186 | 186 | return $this->collection = $collection; |
@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | */ |
110 | 110 | public function loadConfiguration(SourceConfiguration $configuration) |
111 | 111 | { |
112 | - config()->set( $this->prefixConfiguration = $configuration->getName(), $configuration->get()); |
|
112 | + config()->set($this->prefixConfiguration = $configuration->getName(), $configuration->get()); |
|
113 | 113 | } |
114 | 114 | |
115 | 115 | /** |
@@ -159,7 +159,7 @@ discard block |
||
159 | 159 | { |
160 | 160 | Assertion::keyIsset($this->action, $typeAction); |
161 | 161 | |
162 | - $this->currentAction = app()->make( $this->action[$typeAction] ); |
|
162 | + $this->currentAction = app()->make($this->action[$typeAction]); |
|
163 | 163 | |
164 | 164 | return $this->currentAction; |
165 | 165 | } |
@@ -175,7 +175,7 @@ discard block |
||
175 | 175 | |
176 | 176 | extract($this->splitAction($action)); |
177 | 177 | |
178 | - $action = $this->setAction($action); |
|
178 | + $action = $this->setAction($action); |
|
179 | 179 | $this->setHandler($handler); |
180 | 180 | |
181 | 181 | $action->injectionKernel($this); |
@@ -205,8 +205,8 @@ discard block |
||
205 | 205 | { |
206 | 206 | try { |
207 | 207 | Assertion::regex($collection, '/[A-z]+Collection$/'); |
208 | - } catch(AssertionFailedException $e) { |
|
209 | - throw new \Exception("Expected word 'Collection' in parameter method setCollection received : " . $e->getValue()); |
|
208 | + } catch (AssertionFailedException $e) { |
|
209 | + throw new \Exception("Expected word 'Collection' in parameter method setCollection received : " . $e->getValue()); |
|
210 | 210 | } |
211 | 211 | |
212 | 212 | return $this->collection = $collection; |
@@ -237,8 +237,8 @@ discard block |
||
237 | 237 | |
238 | 238 | // verification values |
239 | 239 | Assertion::between(count($split), 2, 2); |
240 | - Assertion::keyExists( $this->action, $split[0]); |
|
241 | - Assertion::keyExists( $this->handlers, $split[1]); |
|
240 | + Assertion::keyExists($this->action, $split[0]); |
|
241 | + Assertion::keyExists($this->handlers, $split[1]); |
|
242 | 242 | |
243 | 243 | return ['action' => $split[0], 'handler' => $split[1]]; |
244 | 244 | } |
@@ -9,7 +9,7 @@ |
||
9 | 9 | { |
10 | 10 | public function register() |
11 | 11 | { |
12 | - if ( app()->resolved('config') === false ) |
|
12 | + if (app()->resolved('config') === false) |
|
13 | 13 | { |
14 | 14 | app()->instance('config', new Repository()); |
15 | 15 | } |
@@ -13,9 +13,9 @@ |
||
13 | 13 | |
14 | 14 | public function register() |
15 | 15 | { |
16 | - app()->bind(Read::class, Read::class); |
|
17 | - app()->bind(Create::class, Create::class); |
|
18 | - app()->bind(Update::class, Update::class); |
|
19 | - app()->bind(Delete::class, Delete::class); |
|
16 | + app()->bind(Read::class, Read::class); |
|
17 | + app()->bind(Create::class, Create::class); |
|
18 | + app()->bind(Update::class, Update::class); |
|
19 | + app()->bind(Delete::class, Delete::class); |
|
20 | 20 | } |
21 | 21 | } |
22 | 22 | \ No newline at end of file |
@@ -13,7 +13,7 @@ |
||
13 | 13 | |
14 | 14 | public function register() |
15 | 15 | { |
16 | - app()->bind(Read::class, Read::class); |
|
16 | + app()->bind(Read::class, Read::class); |
|
17 | 17 | app()->bind(Create::class, Create::class); |
18 | 18 | app()->bind(Update::class, Update::class); |
19 | 19 | app()->bind(Delete::class, Delete::class); |
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | */ |
18 | 18 | public function get() |
19 | 19 | { |
20 | - $configuration = require $this->pathToFile; |
|
20 | + $configuration = require $this->pathToFile; |
|
21 | 21 | return $configuration; |
22 | 22 | } |
23 | 23 | |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | if (file_exists($path)) |
31 | 31 | { |
32 | 32 | $this->pathToFile = $path; |
33 | - } else{ |
|
33 | + } else { |
|
34 | 34 | Assertion::file($path, 'Local file name is not exist.'); |
35 | 35 | } |
36 | 36 | return true; |
@@ -55,7 +55,7 @@ |
||
55 | 55 | //dd($test); |
56 | 56 | |
57 | 57 | // 8. Example delete |
58 | -$test = $test->action('delete:xml', function ($creator){ |
|
58 | +$test = $test->action('delete:xml', function($creator) { |
|
59 | 59 | $creator->guid(''); |
60 | 60 | })->get(); |
61 | 61 | dd($test); |
62 | 62 | \ No newline at end of file |
@@ -127,7 +127,7 @@ |
||
127 | 127 | */ |
128 | 128 | public function toArray() |
129 | 129 | { |
130 | - return $this->xmlToArrayRecursive($this->validText); |
|
130 | + return $this->xmlToArrayRecursive($this->validText); |
|
131 | 131 | } |
132 | 132 | |
133 | 133 | /** |
@@ -84,12 +84,12 @@ discard block |
||
84 | 84 | $this->response = simplexml_load_string($response); |
85 | 85 | $copyXml = $this->response; |
86 | 86 | |
87 | - if ( $this->response === false || $this->checkIntegrity($this->response) === false ) |
|
87 | + if ($this->response === false || $this->checkIntegrity($this->response) === false) |
|
88 | 88 | { |
89 | 89 | return []; |
90 | 90 | } |
91 | 91 | |
92 | - $array_vars_list = get_object_vars($copyXml); |
|
92 | + $array_vars_list = get_object_vars($copyXml); |
|
93 | 93 | |
94 | 94 | if (key_exists('content', $array_vars_list)) { |
95 | 95 | return $this->arrayOne(); |
@@ -107,7 +107,7 @@ discard block |
||
107 | 107 | */ |
108 | 108 | public function checkIntegrity($response) |
109 | 109 | { |
110 | - if ( empty($response->message) ) |
|
110 | + if (empty($response->message)) |
|
111 | 111 | { |
112 | 112 | return true; |
113 | 113 | } |
@@ -155,7 +155,7 @@ discard block |
||
155 | 155 | private function workspace() |
156 | 156 | { |
157 | 157 | foreach ($this->response->workspace->collection as $item) { |
158 | - $this->validText[] = get_object_vars($item->children( $this->namespaces['NamespaceAtom'] ))['title']; |
|
158 | + $this->validText[] = get_object_vars($item->children($this->namespaces['NamespaceAtom']))['title']; |
|
159 | 159 | } |
160 | 160 | return $this; |
161 | 161 | } |
@@ -167,8 +167,8 @@ discard block |
||
167 | 167 | */ |
168 | 168 | private function arrayMany() |
169 | 169 | { |
170 | - foreach ($this->response->children( $this->namespaces['NamespaceAtom'] )->entry as $item ) { |
|
171 | - $this->validText[] = $item->content->children( $this->namespaces['NamespaceMetadata'] ) |
|
170 | + foreach ($this->response->children($this->namespaces['NamespaceAtom'])->entry as $item) { |
|
171 | + $this->validText[] = $item->content->children($this->namespaces['NamespaceMetadata']) |
|
172 | 172 | ->children($this->namespaces['NamespaceDataServices']); |
173 | 173 | } |
174 | 174 | return $this; |
@@ -179,9 +179,9 @@ discard block |
||
179 | 179 | */ |
180 | 180 | private function arrayOne() |
181 | 181 | { |
182 | - $this->validText = $this->response->children( $this->namespaces['NamespaceAtom'] )->content |
|
183 | - ->children( $this->namespaces['NamespaceMetadata'] ) |
|
184 | - ->children( $this->namespaces['NamespaceDataServices'] ); |
|
182 | + $this->validText = $this->response->children($this->namespaces['NamespaceAtom'])->content |
|
183 | + ->children($this->namespaces['NamespaceMetadata']) |
|
184 | + ->children($this->namespaces['NamespaceDataServices']); |
|
185 | 185 | return $this; |
186 | 186 | } |
187 | 187 | |
@@ -218,11 +218,11 @@ discard block |
||
218 | 218 | $xmlns_dcd->appendChild($valued); |
219 | 219 | |
220 | 220 | //---------- properties ----------// |
221 | - $properties = $dom->createElement('m:properties'); |
|
221 | + $properties = $dom->createElement('m:properties'); |
|
222 | 222 | $content->appendChild($properties); |
223 | 223 | |
224 | 224 | foreach ($data as $nameField => $valueField) { |
225 | - $element = $dom->createElement($this->prefixNamespace.':'.$nameField); |
|
225 | + $element = $dom->createElement($this->prefixNamespace . ':' . $nameField); |
|
226 | 226 | $properties->appendChild($element); |
227 | 227 | $valued = $dom->createTextNode($valueField); |
228 | 228 | $element->appendChild($valued); |
@@ -2,7 +2,7 @@ discard block |
||
2 | 2 | |
3 | 3 | use Illuminate\Container\Container; |
4 | 4 | |
5 | -if (! function_exists('config')) { |
|
5 | +if (!function_exists('config')) { |
|
6 | 6 | /** |
7 | 7 | * Get / set the specified configuration value. |
8 | 8 | * |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | } |
27 | 27 | } |
28 | 28 | |
29 | -if (! function_exists('app')) { |
|
29 | +if (!function_exists('app')) { |
|
30 | 30 | /** |
31 | 31 | * Get the available container instance. |
32 | 32 | * |
@@ -60,7 +60,7 @@ |
||
60 | 60 | |
61 | 61 | $this->headers()->getCookie()->body()->httpErrorsFalse()->get(); |
62 | 62 | $response = $this->kernel->getCurl()->request($this->HTTP_TYPE, $urlHome . $url, |
63 | - $this->headers()->getCookie()->body()->httpErrorsFalse()->get() |
|
63 | + $this->headers()->getCookie()->body()->httpErrorsFalse()->get() |
|
64 | 64 | ); |
65 | 65 | $body = $response->getBody(); |
66 | 66 | $this->kernel->getHandler()->parse($body->getContents()); |
@@ -59,7 +59,7 @@ |
||
59 | 59 | $urlHome = config($this->kernel->getPrefixConfig() . '.UrlHome'); |
60 | 60 | |
61 | 61 | $this->headers()->getCookie()->body()->httpErrorsFalse()->get(); |
62 | - $response = $this->kernel->getCurl()->request($this->HTTP_TYPE, $urlHome . $url, |
|
62 | + $response = $this->kernel->getCurl()->request($this->HTTP_TYPE, $urlHome . $url, |
|
63 | 63 | $this->headers()->getCookie()->body()->httpErrorsFalse()->get() |
64 | 64 | ); |
65 | 65 | $body = $response->getBody(); |