@@ -86,8 +86,8 @@ discard block |
||
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 |
||
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 | ); |