Sonata\OrderBundle\Entity\BaseOrder::isCancelled PHP Метод

isCancelled() публичный Метод

public isCancelled ( )
    public function isCancelled()
    {
        return $this->getValidatedAt() != null && $this->getStatus() == OrderInterface::STATUS_CANCELLED;
    }
BaseOrder