Completed
Pull Request — master (#134)
by
unknown
01:36
created
src/Resource/Account.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -136,7 +136,7 @@
 block discarded – undo
136 136
      */
137 137
     public function getFullname()
138 138
     {
139
-        return $this->getIfSet('name', $this->data->person) . ' ' . $this->getIfSet('lastName', $this->data->person);
139
+        return $this->getIfSet('name', $this->data->person).' '.$this->getIfSet('lastName', $this->data->person);
140 140
     }
141 141
 
142 142
     /**
Please login to merge, or discard this patch.
tests/TestCase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -171,7 +171,7 @@
 block discarded – undo
171 171
     {
172 172
         $moip = new Moip(new OAuth('1tldio91gi74r34zv30d4saz8yuuws5'), Moip::ENDPOINT_SANDBOX);
173 173
 
174
-        $uniqEmail = 'fulano' . uniqid('MPA-') . '@detal123.com.br';
174
+        $uniqEmail = 'fulano'.uniqid('MPA-').'@detal123.com.br';
175 175
 
176 176
         $account = $moip->accounts()
177 177
             ->setEmail($uniqEmail)
Please login to merge, or discard this patch.