/**
  * @since 2.5
  *
  * @return boolean
  */
 public function isEnabled()
 {
     return $this->searchTable->isEnabled();
 }
Ejemplo n.º 2
0
 public function testIsEnabled()
 {
     $instance = new SearchTable($this->store);
     $instance->setEnabled(true);
     $this->assertTrue($instance->isEnabled());
 }