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\Listeners; use App\Events\SongsBatchLiked; use App\Services\LastfmSe..
Decoded Output download
<?php
namespace App\Listeners;
use App\Events\SongsBatchLiked;
use App\Services\LastfmService;
use Illuminate\Contracts\Queue\ShouldQueue;
class LoveMultipleTracksOnLastfm implements ShouldQueue
{
public function __construct(private LastfmService $lastfm)
{
}
public function handle(SongsBatchLiked $event): void
{
$this->lastfm->batchToggleLoveTracks($event->songs, $event->user, true);
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace App\Listeners;
use App\Events\SongsBatchLiked;
use App\Services\LastfmService;
use Illuminate\Contracts\Queue\ShouldQueue;
class LoveMultipleTracksOnLastfm implements ShouldQueue
{
public function __construct(private LastfmService $lastfm)
{
}
public function handle(SongsBatchLiked $event): void
{
$this->lastfm->batchToggleLoveTracks($event->songs, $event->user, true);
}
}
Function Calls
None |
Stats
MD5 | d1be3eb8c5d8e4dabaa48e3501dac86b |
Eval Count | 0 |
Decode Time | 85 ms |