Наследование: implements Go\Aop\PointFilter
Пример #1
0
 /**
  * @dataProvider logicCases
  */
 public function testMatches(PointFilter $first, $expected)
 {
     $filter = new NotPointFilter($first);
     $result = $filter->matches(new \ReflectionClass(__CLASS__));
     $this->assertSame($expected, $result);
 }