for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* Server module for HiPanel
*
* @link https://github.com/hiqdev/hipanel-module-server
* @package hipanel-module-server
* @license BSD-3-Clause
* @copyright Copyright (c) 2015-2016, HiQDev (http://hiqdev.com/)
*/
namespace hipanel\modules\server\cart;
/**
* Abstract class AbstractServerPurchase.
abstract class AbstractServerPurchase extends \hipanel\modules\finance\cart\AbstractPurchase
{
use \hipanel\base\ModelTrait;
/** {@inheritdoc} */
public static function from()
return 'server';
}