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\Facades; use App\Models\Song; use Illuminate\Support\Facades\Facade;..
Decoded Output download
<?php
namespace App\Facades;
use App\Models\Song;
use Illuminate\Support\Facades\Facade;
/**
* @method static string fromSong(Song $song)
*/
class Download extends Facade
{
protected static function getFacadeAccessor(): string
{
return 'Download';
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace App\Facades;
use App\Models\Song;
use Illuminate\Support\Facades\Facade;
/**
* @method static string fromSong(Song $song)
*/
class Download extends Facade
{
protected static function getFacadeAccessor(): string
{
return 'Download';
}
}
Function Calls
| None |
Stats
| MD5 | f824ec4593095a8a2f738688ec5716ec |
| Eval Count | 0 |
| Decode Time | 92 ms |