Passed
Branch develop (123dae)
by nguereza
05:52
created
src/ParameterInterface.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,8 +46,7 @@
 block discarded – undo
46 46
 
47 47
 namespace Platine\Container;
48 48
 
49
-interface ParameterInterface
50
-{
49
+interface ParameterInterface {
51 50
 
52 51
     /**
53 52
      * Return the name of the parameter
Please login to merge, or discard this patch.
src/StorageCollection.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -46,8 +46,7 @@  discard block
 block discarded – undo
46 46
 
47 47
 namespace Platine\Container;
48 48
 
49
-class StorageCollection
50
-{
49
+class StorageCollection {
51 50
 
52 51
     /**
53 52
      * The array of storages
@@ -66,8 +65,7 @@  discard block
 block discarded – undo
66 65
      *
67 66
      * @param array $storages  the container storages
68 67
      */
69
-    public function __construct(array $storages = [])
70
-    {
68
+    public function __construct(array $storages = []) {
71 69
         foreach ($storages as $storage) {
72 70
             if (!$storage instanceof StorageInterface) {
73 71
                 throw new \InvalidArgumentException(sprintf(
Please login to merge, or discard this patch.