Пример #1
0
 private function getExistingRecord()
 {
     $this->clearTable();
     $table = new TestTable();
     $table->setFirstname('Jane');
     $table->setLastname('Doe');
     $table->commit();
     return $table;
 }