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