athenahr/app/Services/DemoService.php
miguel456 3727c84f3e
refactor: code style changes
Signed-off-by: miguel456 <me@nogueira.codes>
2023-01-15 00:04:00 +00:00

12 lines
150 B
PHP
Executable File

<?php
namespace App\Services;
class DemoService
{
public function isDemoEnabled(): bool
{
return config('demo.is_enabled');
}
}