Instantiates and runs Zend Filters (from ZF2)
Inheritance: extends BaseFilter
Beispiel #1
0
 /**
  * @expectedException \DMS\Filter\Exception\InvalidZendFilterException
  */
 public function testInvalidFilter()
 {
     $rule = $this->buildRule('MissingFilter');
     $filter = new Zend();
     $filter->apply($rule, '0');
 }