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\Download; /** * @property array $songs */ class Song..

Decoded Output download

<?php

namespace App\Http\Requests\Download;

/**
 * @property array $songs
 */
class SongRequest 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\Download;

/**
 * @property array $songs
 */
class SongRequest extends Request
{
    /** @return array<mixed> */
    public function rules(): array
    {
        return [
            'songs' => 'required|array',
        ];
    }
}

Function Calls

None

Variables

None

Stats

MD5 69497944c848ae6e275c0b47721c0650
Eval Count 0
Decode Time 111 ms