@@ -34,15 +34,15 @@ |
||
34 | 34 | |
35 | 35 | protected function renderAuthorization() |
36 | 36 | { |
37 | - $list = []; |
|
37 | + $list = [ ]; |
|
38 | 38 | |
39 | - foreach (['client_id', 'access_token'] as $key) { |
|
39 | + foreach ([ 'client_id', 'access_token' ] as $key) { |
|
40 | 40 | $value = $this->getOptions()->get($key); |
41 | 41 | if (empty($value)) { |
42 | 42 | throw new \InvalidArgumentException('[' . $key . '] ausente!'); |
43 | 43 | } |
44 | 44 | |
45 | - $list[] = $key . ':' . $value; |
|
45 | + $list[ ] = $key . ':' . $value; |
|
46 | 46 | } |
47 | 47 | |
48 | 48 | return $list; |
@@ -27,13 +27,13 @@ discard block |
||
27 | 27 | ], |
28 | 28 | [ |
29 | 29 | 'key' => 'env', |
30 | - 'options' => ['sandbox', 'api'], |
|
30 | + 'options' => [ 'sandbox', 'api' ], |
|
31 | 31 | 'default' => 'sandbox', |
32 | 32 | 'name' => 'Version', |
33 | 33 | ], |
34 | 34 | [ |
35 | 35 | 'key' => 'sslVersion', |
36 | - 'options' => ['SecureTransport', 'TLS'], |
|
36 | + 'options' => [ 'SecureTransport', 'TLS' ], |
|
37 | 37 | 'default' => 'SecureTransport', |
38 | 38 | 'name' => 'SSL Version', |
39 | 39 | ], |
@@ -45,12 +45,12 @@ discard block |
||
45 | 45 | |
46 | 46 | public function factorySdk(array $options) |
47 | 47 | { |
48 | - $options['version'] = $options['env']; |
|
48 | + $options[ 'version' ] = $options[ 'env' ]; |
|
49 | 49 | |
50 | 50 | return Factory::getInstance()->setup($options, $this->factoryLogger()); |
51 | 51 | } |
52 | 52 | |
53 | - public function appendCommand($name, $description, array $definition = []) |
|
53 | + public function appendCommand($name, $description, array $definition = [ ]) |
|
54 | 54 | { |
55 | 55 | return $this->register($name) |
56 | 56 | ->setDescription($description) |
@@ -18,7 +18,7 @@ |
||
18 | 18 | |
19 | 19 | class Factory extends FactoryAbstract |
20 | 20 | { |
21 | - public function setClient(array $clientOptions = []) |
|
21 | + public function setClient(array $clientOptions = [ ]) |
|
22 | 22 | { |
23 | 23 | $this->client = new Client($clientOptions, $this->logger); |
24 | 24 | } |
@@ -76,6 +76,9 @@ |
||
76 | 76 | return $this->getPool()->add($product); |
77 | 77 | } |
78 | 78 | |
79 | + /** |
|
80 | + * @param string $route |
|
81 | + */ |
|
79 | 82 | protected function getMap($route, Product $product) |
80 | 83 | { |
81 | 84 | return $this->factoryMap($route, ['itemId' => $product->getId()]); |
@@ -20,11 +20,11 @@ discard block |
||
20 | 20 | protected $entity = 'Product'; |
21 | 21 | |
22 | 22 | protected $maps = [ |
23 | - 'save' => ['POST', '/products'], |
|
24 | - 'findById' => ['GET', '/products/{itemId}'], |
|
25 | - 'patch' => ['PATCH', '/products/{itemId}'], |
|
26 | - 'update' => ['PUT', '/products/{itemId}'], |
|
27 | - 'fetch' => ['GET', '/products?page={offset}&size={limit}'], |
|
23 | + 'save' => [ 'POST', '/products' ], |
|
24 | + 'findById' => [ 'GET', '/products/{itemId}' ], |
|
25 | + 'patch' => [ 'PATCH', '/products/{itemId}' ], |
|
26 | + 'update' => [ 'PUT', '/products/{itemId}' ], |
|
27 | + 'fetch' => [ 'GET', '/products?page={offset}&size={limit}' ], |
|
28 | 28 | ]; |
29 | 29 | |
30 | 30 | /** |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | { |
35 | 35 | parent::update($entity, $existent); |
36 | 36 | |
37 | - $updated = []; |
|
37 | + $updated = [ ]; |
|
38 | 38 | |
39 | 39 | foreach ([ |
40 | 40 | 'Stock', |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | $getter = 'get' . $key; |
45 | 45 | if ($this->attributesDiff($entity->$getter(), $existent->$getter())) { |
46 | 46 | $method = 'update' . $key; |
47 | - $updated[$key] = $this->$method($entity); |
|
47 | + $updated[ $key ] = $this->$method($entity); |
|
48 | 48 | } |
49 | 49 | } |
50 | 50 | |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | { |
67 | 67 | $existent = $product->getPrevious(); |
68 | 68 | |
69 | - $this->log('INFO', 'save', ['route' => $route, 'existent' => $existent]); |
|
69 | + $this->log('INFO', 'save', [ 'route' => $route, 'existent' => $existent ]); |
|
70 | 70 | |
71 | 71 | if ($existent) { |
72 | 72 | return $this->update($product, $existent); |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | |
78 | 78 | protected function getMap($route, Product $product) |
79 | 79 | { |
80 | - return $this->factoryMap($route, ['itemId' => $product->getId()]); |
|
80 | + return $this->factoryMap($route, [ 'itemId' => $product->getId() ]); |
|
81 | 81 | } |
82 | 82 | |
83 | 83 | protected function updatePrice(Product $product) |
@@ -19,7 +19,7 @@ |
||
19 | 19 | protected $entity = 'Templates'; |
20 | 20 | |
21 | 21 | protected $maps = [ |
22 | - 'fetch' => ['GET', '/brands'], |
|
22 | + 'fetch' => [ 'GET', '/brands' ], |
|
23 | 23 | ]; |
24 | 24 | |
25 | 25 | } |