engelsystem/src/Helpers/ConfigureEnvironmentService...

54 lines
1.2 KiB
PHP
Raw Normal View History

<?php
namespace Engelsystem\Helpers;
use Carbon\CarbonTimeZone;
use Engelsystem\Config\Config;
use Engelsystem\Container\ServiceProvider;
class ConfigureEnvironmentServiceProvider extends ServiceProvider
{
public function register()
{
/** @var Config $config */
$config = $this->app->get('config');
$timezone = new CarbonTimeZone($config->get('timezone'));
$this->setTimeZone($timezone);
$this->displayErrors(false);
if ($config->get('environment') == 'development') {
$this->displayErrors(true);
$this->errorReporting(E_ALL);
}
}
/**
* @param CarbonTimeZone $timeZone
* @codeCoverageIgnore
*/
protected function setTimeZone(CarbonTimeZone $timeZone)
{
ini_set('date.timezone', $timeZone);
date_default_timezone_set($timeZone);
}
/**
* @param bool $displayErrors
* @codeCoverageIgnore
*/
protected function displayErrors(bool $displayErrors)
{
ini_set('display_errors', $displayErrors);
}
/**
* @param int $errorReporting
* @codeCoverageIgnore
*/
protected function errorReporting(int $errorReporting)
{
error_reporting($errorReporting);
}
}