phpcs fixes

This commit is contained in:
Dennis Eichhorn 2019-10-06 17:43:01 +02:00
parent fb69ef7fed
commit 2abfaf58e9
2 changed files with 6 additions and 2 deletions

View File

@ -1,4 +1,4 @@
<?php declare(strict_types=1);
<?php
/**
* Orange Management
*
@ -12,6 +12,8 @@
* @version 1.0.0
* @link https://orange-management.org
*/
declare(strict_types=1);
function printUsage() : void
{
echo 'Usage: -d <DESTINATION_PATH> -m <MODULE_PATH>' . "\n\n";

View File

@ -1,9 +1,11 @@
<?php declare(strict_types=1);
<?php
/**
* Remove old install and setup database.
*
* This script is usefull when you want to manually install the app without resetting an old database/app or new empty database.
*/
declare(strict_types=1);
\ini_set('memory_limit', '2048M');
\ini_set('display_errors', '1');
\ini_set('display_startup_errors', '1');