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 */ class ..
Decoded Output download
<?php
namespace App\Http\Requests\API;
/** @property-read array<string> $songs */
class DeleteSongsRequest 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 DeleteSongsRequest extends Request
{
/** @return array<mixed> */
public function rules(): array
{
return [
'songs' => 'required|array|exists:songs,id',
];
}
}
Function Calls
| None |
Stats
| MD5 | 5a59bee07cc564137ba947f246049b18 |
| Eval Count | 0 |
| Decode Time | 98 ms |