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\Http\Requests\API; /** * @property-read array<string> $songs */ cl..
Decoded Output download
<?php
namespace App\Http\Requests\API;
/**
* @property-read array<string> $songs
*/
class RemoveSongsFromPlaylistRequest extends Request
{
/** @return array<mixed> */
public function rules(): array
{
return [
'songs' => 'required|array|exists:songs,id',
];
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace App\Http\Requests\API;
/**
* @property-read array<string> $songs
*/
class RemoveSongsFromPlaylistRequest extends Request
{
/** @return array<mixed> */
public function rules(): array
{
return [
'songs' => 'required|array|exists:songs,id',
];
}
}
Function Calls
| None |
Stats
| MD5 | 132ad83bf78962921f006661e9922e35 |
| Eval Count | 0 |
| Decode Time | 111 ms |