Completed
Push — master ( ed6a4c...a3a62e )
by James Ekow Abaka
03:18
created
src/validations/UniqueValidation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
         }
69 69
 
70 70
         return $this->evaluateResult(
71
-            $field, $testItem->count() === 0, "The value of " . implode(', ', $field['name']) . " must be unique"
71
+            $field, $testItem->count() === 0, "The value of ".implode(', ', $field['name'])." must be unique"
72 72
         );
73 73
     }
74 74
 
Please login to merge, or discard this patch.
src/RecordWrapper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
     private $initialized = false;
64 64
 
65 65
     private function initialize() {
66
-        if($this->initialized) return;
66
+        if ($this->initialized) return;
67 67
         $this->context = ORMContext::getInstance();
68 68
         $this->container = $this->context->getContainer();
69 69
         $this->adapter = $this->container->resolve(DriverAdapter::class);
Please login to merge, or discard this patch.