Beispiel #1
0
 public function testGetPrefix()
 {
     $this->assertEquals('', $this->instance->getPrefix());
 }
Beispiel #2
0
 /**
  * Returns full table name (with prefix).
  * @return string
  */
 public function getTable()
 {
     $table = str_replace(':', '', $this->source);
     $prefix = $this->connection->getPrefix();
     return $prefix . $table;
 }