Passed
Push — develop ( 275444...04f388 )
by nguereza
10:28
created
src/Transport/NullTransport.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -54,8 +54,7 @@
 block discarded – undo
54 54
  * @class NullTransport
55 55
  * @package Platine\Mail\Transport
56 56
  */
57
-class NullTransport implements TransportInterface
58
-{
57
+class NullTransport implements TransportInterface {
59 58
     /**
60 59
      * {@inheritedoc}
61 60
      */
Please login to merge, or discard this patch.
src/Transport/SMTP.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,8 +57,7 @@
 block discarded – undo
57 57
  * @class SMTP
58 58
  * @package Platine\Mail\Transport
59 59
  */
60
-class SMTP implements TransportInterface
61
-{
60
+class SMTP implements TransportInterface {
62 61
     /**
63 62
      * End of line char
64 63
      */
Please login to merge, or discard this patch.
src/Transport/TransportInterface.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -54,8 +54,7 @@
 block discarded – undo
54 54
  * @class TransportInterface
55 55
  * @package Platine\Mail\Transport
56 56
  */
57
-interface TransportInterface
58
-{
57
+interface TransportInterface {
59 58
     /**
60 59
      * Send the message
61 60
      * @return bool
Please login to merge, or discard this patch.
src/Message.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -54,8 +54,7 @@  discard block
 block discarded – undo
54 54
  * @class Message
55 55
  * @package Platine\Mail
56 56
  */
57
-class Message implements MessageInterface
58
-{
57
+class Message implements MessageInterface {
59 58
     /**
60 59
      * End of line char
61 60
      */
@@ -136,8 +135,7 @@  discard block
 block discarded – undo
136 135
     /**
137 136
      * Create new instance
138 137
      */
139
-    public function __construct()
140
-    {
138
+    public function __construct() {
141 139
         $this->reset();
142 140
     }
143 141
 
Please login to merge, or discard this patch.