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