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 /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@..
Decoded Output download
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\Form;
/**
* @author Bernhard Schussek <[email protected]>
*/
interface FormTypeGuesserInterface
{
/**
* Returns a field guess for a property name of a class.
*/
public function guessType(string $class, string $property): ?Guess\TypeGuess;
/**
* Returns a guess whether a property of a class is required.
*/
public function guessRequired(string $class, string $property): ?Guess\ValueGuess;
/**
* Returns a guess about the field's maximum length.
*/
public function guessMaxLength(string $class, string $property): ?Guess\ValueGuess;
/**
* Returns a guess about the field's pattern.
*/
public function guessPattern(string $class, string $property): ?Guess\ValueGuess;
}
?>
Did this file decode correctly?
Original Code
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\Form;
/**
* @author Bernhard Schussek <[email protected]>
*/
interface FormTypeGuesserInterface
{
/**
* Returns a field guess for a property name of a class.
*/
public function guessType(string $class, string $property): ?Guess\TypeGuess;
/**
* Returns a guess whether a property of a class is required.
*/
public function guessRequired(string $class, string $property): ?Guess\ValueGuess;
/**
* Returns a guess about the field's maximum length.
*/
public function guessMaxLength(string $class, string $property): ?Guess\ValueGuess;
/**
* Returns a guess about the field's pattern.
*/
public function guessPattern(string $class, string $property): ?Guess\ValueGuess;
}
Function Calls
None |
Stats
MD5 | 667de6663fd7e3457f04aef4b5ec046d |
Eval Count | 0 |
Decode Time | 100 ms |