Pantheon\Terminus\Collections\Tags::fetch PHP Method

fetch() public method

public fetch ( array $options = [] )
$options array
    public function fetch(array $options = [])
    {
        foreach ($options as $tag_string) {
            if (is_string($tag_string)) {
                $this->add((object) ['id' => $tag_string]);
            }
        }
        return $this;
    }