예제 #1
0
파일: DatabaseTest.php 프로젝트: sqon/sqon
 /**
  * Verify that path can be removed.
  */
 public function testRemoveAnExistingPath()
 {
     $this->insert->execute($this->values);
     $this->manager->removePath($this->values['path']);
 }
예제 #2
0
파일: Sqon.php 프로젝트: sqon/sqon
 /**
  * {@inheritdoc}
  */
 public function removePath($path)
 {
     $this->database->removePath($path);
     return $this;
 }