示例#1
0
 /**
  * {@inheritdoc}
  */
 public function clearFilters()
 {
     if ($this->innerAsset) {
         $this->innerAsset->clearFilters();
         return;
     }
     $this->filters->clear();
 }
示例#2
0
 public function testEmptyAll()
 {
     $filter = new FilterCollection();
     $this->assertInternalType('array', $filter->all(), '->all() returns an array');
 }