Completed
Push — master ( a640fb...f80c47 )
by James Ekow Abaka
02:10
created
src/RecordWrapper.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -86,8 +86,8 @@  discard block
 block discarded – undo
86 86
             $this->table = $table['table'];
87 87
             $this->schema = $table['schema'];
88 88
         }
89
-        $this->quotedTable = ($this->schema ? "{$driver->quoteIdentifier($this->schema)}." : "") . $driver->quoteIdentifier($this->table);
90
-        $this->unquotedTable = ($this->schema ? "{$this->schema}." : "") . $this->table;
89
+        $this->quotedTable = ($this->schema ? "{$driver->quoteIdentifier($this->schema)}." : "").$driver->quoteIdentifier($this->table);
90
+        $this->unquotedTable = ($this->schema ? "{$this->schema}." : "").$this->table;
91 91
         $this->adapter->setModel($this, $this->quotedTable);
92 92
         foreach ($this->behaviours as $behaviour) {
93 93
             $behaviourInstance = $this->getComponentInstance($behaviour);
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
     {
111 111
         $this->initialize();
112 112
         return $this->context->getCache()->read(
113
-                        (new \ReflectionClass($this))->getName() . '::desc', function() {
113
+                        (new \ReflectionClass($this))->getName().'::desc', function() {
114 114
                     return $this->container->resolve(ModelDescription::class, ['model' => $this]);
115 115
                 }
116 116
         );
Please login to merge, or discard this patch.