OpenSkill\Datatable\Columns\Searchable\Searchable::NOTIMPLEMENTED PHP Method

NOTIMPLEMENTED() public static method

This is used for unit testing. Nothing to see here.
public static NOTIMPLEMENTED ( ) : NotImplementedSearchable
return NotImplementedSearchable
    public static function NOTIMPLEMENTED()
    {
        return new NotImplementedSearchable();
    }

Usage Example

コード例 #1
0
 /**
  * @expectedException OpenSkill\Datatable\DatatableException
  * @expectedExceptionMessage An unsupported DefaultSearchable was provided.
  */
 public function testDefaultOrderWithSearchNotImplemented()
 {
     $this->orderAndSearchNotImplementedTest(Searchable::NOTIMPLEMENTED());
 }
All Usage Examples Of OpenSkill\Datatable\Columns\Searchable\Searchable::NOTIMPLEMENTED