cleanup and tests added for ci/cd

This commit is contained in:
Dennis Eichhorn 2019-11-20 22:28:04 +01:00
parent 7e305f7b89
commit 24d8bd9b41
4 changed files with 84 additions and 0 deletions

View File

@ -0,0 +1,28 @@
<?php
/**
* Orange Management
*
* PHP Version 7.4
*
* @package Modules\Purchase\Models
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*/
declare(strict_types=1);
namespace Modules\Purchase\Models;
/**
* Article class.
*
* @package Modules\Purchase\Models
* @license OMS License 1.0
* @link https://orange-management.org
* @since 1.0.0
*/
class Article
{
}

View File

@ -0,0 +1,28 @@
<?php
/**
* Orange Management
*
* PHP Version 7.4
*
* @package Modules\Purchase\Models
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*/
declare(strict_types=1);
namespace Modules\Purchase\Models;
/**
* Invoice class.
*
* @package Modules\Purchase\Models
* @license OMS License 1.0
* @link https://orange-management.org
* @since 1.0.0
*/
class Invoice
{
}

View File

@ -0,0 +1,28 @@
<?php
/**
* Orange Management
*
* PHP Version 7.4
*
* @package Modules\Purchase\Models
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*/
declare(strict_types=1);
namespace Modules\Purchase\Models;
/**
* OrderSuggestion class.
*
* @package Modules\Purchase\Models
* @license OMS License 1.0
* @link https://orange-management.org
* @since 1.0.0
*/
class OrderSuggestion
{
}

View File