core/modules/shop/model/CartItemModel.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

class CartItemModel extends Ajde_Shop_Cart_Item
{
    protected $_cartModel = 'CartModel';

    public function getDescription()
    {
        $entity = $this->getEntity();
        if (!$entity instanceof Ajde_Model || !$entity->hasLoaded()) {
            return trans('(item is unavailable)');
        }

        return $entity->getTitle();
    }
}