Completed
Push — master ( e3ac1d...99fd83 )
by Francis
02:01 queued 30s
created
libraries/Message.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
    * @param  integer    $partId [description]
62 62
    * @return [type]             [description]
63 63
    */
64
-  public function body(int $partId=0)
64
+  public function body(int $partId = 0)
65 65
   {
66 66
     if ($this->isMultiPart()) {
67 67
       return new MessagePart($this->message->payload->parts[$partId]);
Please login to merge, or discard this patch.
libraries/MessagePart.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
    * @param  integer    $partId [description]
59 59
    * @return [type]             [description]
60 60
    */
61
-  public function body(int $partId=0)
61
+  public function body(int $partId = 0)
62 62
   {
63 63
     return base64url_decode($this->part->body->data);
64 64
   }
Please login to merge, or discard this patch.