Go\Aop\Support\OrPointFilter::__construct PHP Method

__construct() public method

Or 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;
    }