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\Extension\Core\Type;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormInterface;
use Symfony\Component\Form\FormView;
class TextareaType extends AbstractType
{
public function buildView(FormView $view, FormInterface $form, array $options): void
{
$view->vars['pattern'] = null;
unset($view->vars['attr']['pattern']);
}
public function getParent(): ?string
{
return TextType::class;
}
public function getBlockPrefix(): string
{
return 'textarea';
}
}
?>
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\Extension\Core\Type;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormInterface;
use Symfony\Component\Form\FormView;
class TextareaType extends AbstractType
{
public function buildView(FormView $view, FormInterface $form, array $options): void
{
$view->vars['pattern'] = null;
unset($view->vars['attr']['pattern']);
}
public function getParent(): ?string
{
return TextType::class;
}
public function getBlockPrefix(): string
{
return 'textarea';
}
}
Function Calls
None |
Stats
MD5 | 056b873bf5a066eab5e0d6a5d56c31fd |
Eval Count | 0 |
Decode Time | 97 ms |