Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php namespace App\Providers; use App\Services\Util; use Illuminate\Support\ServiceProv..
Decoded Output download
<?php
namespace App\Providers;
use App\Services\Util;
use Illuminate\Support\ServiceProvider;
class UtilServiceProvider extends ServiceProvider
{
public function register(): void
{
app()->singleton('Util', static fn (): Util => app(Util::class));
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace App\Providers;
use App\Services\Util;
use Illuminate\Support\ServiceProvider;
class UtilServiceProvider extends ServiceProvider
{
public function register(): void
{
app()->singleton('Util', static fn (): Util => app(Util::class));
}
}
Function Calls
| None |
Stats
| MD5 | 0da2e190470fcab0c2c65cdb7eb4e755 |
| Eval Count | 0 |
| Decode Time | 97 ms |