Inheritance: implements Go\Aop\PointFilter
 /**
  * @dataProvider logicCases
  */
 public function testMatches(PointFilter $first, PointFilter $second, $expected)
 {
     $filter = new AndPointFilter($first, $second);
     $result = $filter->matches(new \ReflectionClass(__CLASS__));
     $this->assertSame($expected, $result);
 }