Add spaces around namespace

This commit is contained in:
Dennis Eichhorn 2018-02-03 11:46:23 +01:00
parent dc6ad4f62f
commit 5bef81ff07
13 changed files with 25 additions and 11 deletions

View File

@ -11,6 +11,7 @@
* @link http://website.orange-management.de
*/
declare(strict_types = 1);
namespace Modules\Workflow\Admin;
use phpOMS\DataStorage\Database\DatabasePool;

View File

@ -11,6 +11,7 @@
* @link http://website.orange-management.de
*/
declare(strict_types = 1);
namespace Modules\Workflow\Admin;
use phpOMS\DataStorage\Database\DatabasePool;

View File

@ -11,7 +11,9 @@
* @link http://website.orange-management.de
*/
declare(strict_types = 1);
namespace Modules\Workflow\Admin\Install;
use phpOMS\DataStorage\Database\DatabasePool;
/**

View File

@ -11,6 +11,7 @@
* @link http://website.orange-management.de
*/
declare(strict_types = 1);
namespace Modules\Workflow\Admin;
use phpOMS\DataStorage\Database\DatabaseType;

View File

@ -11,6 +11,7 @@
* @link http://website.orange-management.de
*/
declare(strict_types = 1);
namespace Modules\Workflow\Admin;
use phpOMS\DataStorage\Database\DatabasePool;

View File

@ -11,6 +11,7 @@
* @link http://website.orange-management.de
*/
declare(strict_types = 1);
namespace Modules\Workflow\Admin;
use phpOMS\DataStorage\Database\DatabasePool;

View File

@ -11,6 +11,7 @@
* @link http://website.orange-management.de
*/
declare(strict_types = 1);
namespace Modules\Workflow;
use phpOMS\Message\RequestAbstract;

View File

@ -11,6 +11,7 @@
* @link http://website.orange-management.de
*/
declare(strict_types = 1);
namespace Modules\Workflow\Models;
/**

View File

@ -11,6 +11,7 @@
* @link http://website.orange-management.de
*/
declare(strict_types = 1);
namespace Modules\Workflow\Models;
/**
@ -24,4 +25,4 @@ namespace Modules\Workflow\Models;
interface WorkflowInterface
{
}
}

View File

@ -11,6 +11,7 @@
* @link http://website.orange-management.de
*/
declare(strict_types = 1);
namespace Modules\Workflow\Models;
use phpOMS\Stdlib\Base\Enum;
@ -25,10 +26,10 @@ use phpOMS\Stdlib\Base\Enum;
*/
abstract class WorkflowStatus extends Enum
{
/* public */ const OPEN = 1;
/* public */ const WORKING = 2;
/* public */ const OPEN = 1;
/* public */ const WORKING = 2;
/* public */ const SUSPENDED = 3;
/* public */ const CANCELED = 4;
/* public */ const DONE = 5;
/* public */ const CLOSED = 6;
/* public */ const CANCELED = 4;
/* public */ const DONE = 5;
/* public */ const CLOSED = 6;
}

View File

@ -11,6 +11,7 @@
* @link http://website.orange-management.de
*/
declare(strict_types = 1);
namespace Modules\Workflow\Templates\Permission;
use phpOMS\Stdlib\Base\Enum;
@ -25,7 +26,7 @@ use phpOMS\Stdlib\Base\Enum;
*/
abstract class PermissionStatus extends Enum
{
/* public */ const PENDING = 1;
/* public */ const APPROVED = 2;
/* public */ const PENDING = 1;
/* public */ const APPROVED = 2;
/* public */ const DISMISSED = 3;
}

View File

@ -11,6 +11,7 @@
* @link http://website.orange-management.de
*/
declare(strict_types = 1);
namespace Modules\Workflow\Templates\Permission;
use phpOMS\Stdlib\Base\Enum;
@ -25,8 +26,8 @@ use phpOMS\Stdlib\Base\Enum;
*/
abstract class States extends Enum
{
/* public */ const DEFAULT = 0;
/* public */ const PENDING = 1;
/* public */ const APPROVED = 2;
/* public */ const DEFAULT = 0;
/* public */ const PENDING = 1;
/* public */ const APPROVED = 2;
/* public */ const DISMISSED = 3;
}

View File

@ -11,6 +11,7 @@
* @link http://website.orange-management.de
*/
declare(strict_types = 1);
namespace Modules\Media;
use Modules\Workflow\Models\WorkflowInterface;