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 declare(strict_types=1); namespace App\Domain\User; interface UserRepository { ..
Decoded Output download
<?php
declare(strict_types=1);
namespace App\Domain\User;
interface UserRepository
{
/**
* @return User[]
*/
public function findAll(): array;
/**
* @param int $id
* @return User
* @throws UserNotFoundException
*/
public function findUserOfId(int $id): User;
}
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
namespace App\Domain\User;
interface UserRepository
{
/**
* @return User[]
*/
public function findAll(): array;
/**
* @param int $id
* @return User
* @throws UserNotFoundException
*/
public function findUserOfId(int $id): User;
}
Function Calls
None |
Stats
MD5 | 3dc0827521c9685e73b5885a05b6029b |
Eval Count | 0 |
Decode Time | 86 ms |