N98\Magento\Command\System\CheckCommand::checkStores PHP Method

checkStores() private method

private checkStores ( N98\Magento\Command\System\Check\ResultCollection $results, string $checkGroupClass, N98\Magento\Command\System\Check\StoreCheck $check )
$results N98\Magento\Command\System\Check\ResultCollection
$checkGroupClass string name
$check N98\Magento\Command\System\Check\StoreCheck
    private function checkStores(ResultCollection $results, $checkGroupClass, Check\StoreCheck $check)
    {
        if (!($stores = \Mage::app()->getStores())) {
            $this->_markCheckWarning($results, 'stores', $checkGroupClass);
        }
        foreach ($stores as $store) {
            $check->check($results, $store);
        }
    }