Passed
Push — master ( ff9723...c2666e )
by Vadim
01:26
created
src/DiException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
 
33 33
     /**  @return  string  default exception message */
34 34
     public function buildMessage(array $vars) {
35
-        $message = $this->getId() . ':';
35
+        $message = $this->getId().':';
36 36
         foreach ($vars as $key => $value)
37 37
             $message .= " $key = $value;";
38 38
 
Please login to merge, or discard this patch.
src/storage/OfflineStorageAdapter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
      */
44 44
     public function store(Bean $bean) {
45 45
         $this->storage->store(self::DI_VALUE_PREFIX.$bean->name, $bean->value);
46
-        foreach($bean->aliases as $alias)
46
+        foreach ($bean->aliases as $alias)
47 47
             $this->storage->store(self::DI_ALIAS_PREFIX.$alias, $bean->name);
48 48
 
49 49
         return $bean->value;
Please login to merge, or discard this patch.