Passed
Push — develop ( 159abc...163878 )
by nguereza
02:09
created
src/Storage/MemoryStorage.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -53,8 +53,7 @@  discard block
 block discarded – undo
53 53
  * Class MemoryStorage
54 54
  * @package Platine\Lang\Storage
55 55
  */
56
-class MemoryStorage implements StorageInterface
57
-{
56
+class MemoryStorage implements StorageInterface {
58 57
 
59 58
     /**
60 59
      * The configuration instance
@@ -90,8 +89,7 @@  discard block
 block discarded – undo
90 89
      * Create new instance
91 90
      * @param Configuration $config
92 91
      */
93
-    public function __construct(Configuration $config)
94
-    {
92
+    public function __construct(Configuration $config) {
95 93
         $this->config = $config;
96 94
         $this->domain = $config->get('domain');
97 95
         $this->encoding = $config->get('encoding');
Please login to merge, or discard this patch.
src/Configuration.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,8 +52,7 @@
 block discarded – undo
52 52
  * Class Configuration
53 53
  * @package Platine\Lang
54 54
  */
55
-class Configuration extends AbstractConfiguration
56
-{
55
+class Configuration extends AbstractConfiguration {
57 56
 
58 57
     /**
59 58
      * {@inheritdoc}
Please login to merge, or discard this patch.