Documer\Storage\Memory::getDistinctLabels PHP Method

getDistinctLabels() public method

See also: Adapter::getDistinctLabels()
public getDistinctLabels ( )
    public function getDistinctLabels()
    {
        $results = array();
        foreach ($this->labels as $l) {
            if (!in_array($l, $results)) {
                $results[] = $l;
            }
        }
        return $results;
    }