remove() публичный Метод

Remove a feature definition from rollout
public remove ( string $feature )
$feature string
Пример #1
0
 public function testRemove()
 {
     $this->rollout->activate('signup');
     $feature = $this->rollout->get('signup');
     $this->assertEquals('signup', $feature->getName());
     $this->rollout->remove('signup');
     $this->assertNotContains('signup', $this->rollout->features());
 }