NOTIMPLEMENTED() публичный статический Метод

This is used for unit testing. Nothing to see here.
public static NOTIMPLEMENTED ( ) : NotImplementedSearchable
Результат NotImplementedSearchable
 /**
  * @expectedException OpenSkill\Datatable\DatatableException
  * @expectedExceptionMessage An unsupported DefaultSearchable was provided.
  */
 public function testDefaultOrderWithSearchNotImplemented()
 {
     $this->orderAndSearchNotImplementedTest(Searchable::NOTIMPLEMENTED());
 }
 public function testClass()
 {
     $t = Searchable::NOTIMPLEMENTED();
     $this->assertTrue($t->isSearchable());
 }