Passed
Push — develop ( 970386...4cc534 )
by nguereza
12:23 queued 10:44
created
src/Formatter/DefaultFormatter.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,8 +53,7 @@
 block discarded – undo
53 53
  * Class DefaultFormatter
54 54
  * @package Platine\Logger\Formatter
55 55
  */
56
-class DefaultFormatter extends AbstractFormatter
57
-{
56
+class DefaultFormatter extends AbstractFormatter {
58 57
     /**
59 58
      * {@inheritdoc}
60 59
      * YYYY-mm-dd HH:ii:ss.micro  [log level]  [channel]  [pid:##]
Please login to merge, or discard this patch.
src/Formatter/AbstractFormatter.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -56,8 +56,7 @@  discard block
 block discarded – undo
56 56
  * Class AbstractFormatter
57 57
  * @package Platine\Logger\Formatter
58 58
  */
59
-abstract class AbstractFormatter implements LoggerFormatterInterface
60
-{
59
+abstract class AbstractFormatter implements LoggerFormatterInterface {
61 60
     /**
62 61
      * Log fields separated by tabs to form a TSV (CSV with tabs).
63 62
      * @var string
@@ -74,8 +73,7 @@  discard block
 block discarded – undo
74 73
      * Create new instance
75 74
      * @param Configuration $config the configuration to use
76 75
      */
77
-    public function __construct(Configuration $config)
78
-    {
76
+    public function __construct(Configuration $config) {
79 77
         $this->config = $config;
80 78
     }
81 79
 
Please login to merge, or discard this patch.