コード例 #1
0
 /**
  * @expectedException \OutOfBoundsException
  */
 public function testRemovingNonExistentEntryReturnsNull()
 {
     $this->coll->remove('testing_does_not_exist');
 }
コード例 #2
0
ファイル: Wunderlist.php プロジェクト: italolelis/wunderlist
 /**
  * Unregister a service
  * @param string $name The service name
  * @return $this
  */
 public function unregisterService($name)
 {
     $this->services->remove($name);
     return $this;
 }