Go\Aop\Support\AndPointFilter::__construct PHP Метод

__construct() публичный Метод

And constructor
public __construct ( Go\Aop\PointFilter $first, Go\Aop\PointFilter $second )
$first Go\Aop\PointFilter First part of filter
$second Go\Aop\PointFilter Second part of filter to match
    public function __construct(PointFilter $first, PointFilter $second)
    {
        $this->kind = $first->getKind() & $second->getKind();
        $this->first = $first;
        $this->second = $second;
    }