Elcodi\Plugin\StoreSetupWizardBundle\Services\WizardStatus::isPaymentFulfilled PHP Метод

isPaymentFulfilled() защищенный Метод

Checks if the payment has been fulfilled
protected isPaymentFulfilled ( ) : boolean
Результат boolean
    protected function isPaymentFulfilled()
    {
        return array_reduce($this->enabledPaymentPlugins, function ($value, Plugin $plugin) {
            return $value || $plugin->guessIsUsable();
        }, false);
    }