Smile\ElasticsuiteThesaurus\Model\Thesaurus::getStoreIds PHP Method

getStoreIds() public method

Get store ids
public getStoreIds ( ) : int[]
return int[]
    public function getStoreIds()
    {
        if ($this->getStores()) {
            $this->setStoreIds($this->getStores());
        }
        if (empty($this->storeIds)) {
            $this->storeIds = $this->getResource()->getStoreIdsFromThesaurusId($this->getThesaurusId());
        }
        return $this->storeIds;
    }