You've already forked Php-Template
Some checks failed
🧪✨ Tests Workflow / 🛡️ 🔒 Library Audit (push) Successful in 3m15s
🧪✨ Tests Workflow / 📝 ✨ Code Lint (push) Failing after 3m7s
🧪✨ Tests Workflow / 🛡️ 🔒 License Check (push) Successful in 3m28s
🧪✨ Tests Workflow / 🧪 ✨ Database Migrations (push) Successful in 3m47s
🧪✨ Tests Workflow / 🐙 🔍 Code Sniffer (push) Failing after 3m32s
🧪✨ Tests Workflow / 🧪 ✅ Unit Tests (push) Successful in 1m51s
19 lines
369 B
PHP
19 lines
369 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Siteworxpro\App\Services\ServiceProviders;
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
use Siteworxpro\App\Log\Logger;
|
|
|
|
class LoggerServiceProvider extends ServiceProvider
|
|
{
|
|
public function register(): void
|
|
{
|
|
$this->app->singleton(Logger::class, function () {
|
|
return new Logger();
|
|
});
|
|
}
|
|
}
|