Passed
Push — master ( 4a8391...cc25cc )
by Thiago
47s
created
samples/retorno.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,11 +21,11 @@  discard block
 block discarded – undo
21 21
     $sequence   = new Sequence(784);
22 22
 
23 23
     /* @var $customer \MrPrompt\ShipmentCommon\Base\Customer */
24
-    $customer   = Factory::createCustomerFromArray(['cliente' => 759, 'identificador' => 39282]);
24
+    $customer   = Factory::createCustomerFromArray([ 'cliente' => 759, 'identificador' => 39282 ]);
25 25
 
26 26
     /* @var $importer \MrPrompt\CaixaEconomicaFederal\Received\File */
27 27
     $importer   = new File($customer, $sequence, $date, __DIR__ . '/recebidos');
28
-    $importer->setCart( new Cart() );
28
+    $importer->setCart(new Cart());
29 29
 
30 30
     // importing file data
31 31
     $result     = $importer->read('000759_27082015_00001.RET');
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
     $cart       = $importer->getCart();
35 35
 
36 36
     /* @var $lista array */
37
-    $lista      = [];
37
+    $lista      = [ ];
38 38
 
39 39
     /* @var $item \MrPrompt\CaixaEconomicaFederal\Shipment\Partial\Detail */
40 40
     foreach ($cart as $item) {
Please login to merge, or discard this patch.