Passed
Branch master (2b4db2)
by Thiago
03:43
created
Category
src/Common/Base/Charge.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -16,42 +16,42 @@  discard block
 block discarded – undo
16 16
      *
17 17
      * @const string
18 18
      */
19
-    const BILLET        = 'B';
19
+    const BILLET = 'B';
20 20
 
21 21
     /**
22 22
      * Credit card
23 23
      *
24 24
      * @const string
25 25
      */
26
-    const CREDIT_CARD   = 'C';
26
+    const CREDIT_CARD = 'C';
27 27
 
28 28
     /**
29 29
      * Debit on bank account
30 30
      *
31 31
      * @const string
32 32
      */
33
-    const DEBIT         = 'D';
33
+    const DEBIT = 'D';
34 34
 
35 35
     /**
36 36
      * Energy account
37 37
      *
38 38
      * @const string
39 39
      */
40
-    const ENERGY        = 'E';
40
+    const ENERGY = 'E';
41 41
 
42 42
     /**
43 43
      * Batch File
44 44
      *
45 45
      * @const string
46 46
      */
47
-    const BATCH_FILE    = 'F';
47
+    const BATCH_FILE = 'F';
48 48
 
49 49
     /**
50 50
      * Payment Slip
51 51
      *
52 52
      * @const string
53 53
      */
54
-    const PAYMENT_SLIP  = 'P';
54
+    const PAYMENT_SLIP = 'P';
55 55
 
56 56
     /**
57 57
      * Charging type
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
      *
67 67
      * @var string
68 68
      */
69
-    private $charging   = self::CREDIT_CARD;
69
+    private $charging = self::CREDIT_CARD;
70 70
 
71 71
     /**
72 72
      * Occurrence
Please login to merge, or discard this patch.
src/Common/Base/Person.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -241,7 +241,7 @@
 block discarded – undo
241 241
     public function setPerson($person)
242 242
     {
243 243
         try {
244
-            Validator::create()->stringType()->in(['F', 'J'])->assert($person);
244
+            Validator::create()->stringType()->in([ 'F', 'J' ])->assert($person);
245 245
 
246 246
             $this->person = $person;
247 247
         } catch (AllOfException $ex) {
Please login to merge, or discard this patch.