AwsInspector\Model\AbstractResource::matchesTags PHP 메소드

matchesTags() 공개 메소드

public matchesTags ( array $filter ) : boolean
$filter array
리턴 boolean
    public function matchesTags(array $filter)
    {
        $tags = $this->getAssocTags();
        $patched = array_replace_recursive($tags, $filter);
        return $tags == $patched;
    }