* @copyright 2007-2018 PrestaShop SA * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) * International Registered Trademark & Property of PrestaShop SA */ /** * Class PaymentFree * Simple class to allow free order. */ class PaymentFree extends PaymentModule { public $active = 1; public $name = 'free_order'; public $displayName = 'Free order'; }