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 Illuminate\Console\View\Components; use Symfony\Component\Console\Questi..
Decoded Output download
<?php
namespace Illuminate\Console\View\Components;
use Symfony\Component\Console\Question\Question;
class Ask extends Component
{
/**
* Renders the component using the given arguments.
*
* @param string $question
* @param string $default
* @return mixed
*/
public function render($question, $default = null, $multiline = false)
{
return $this->usingQuestionHelper(
fn () => $this->output->askQuestion(
(new Question($question, $default))
->setMultiline($multiline)
)
);
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Illuminate\Console\View\Components;
use Symfony\Component\Console\Question\Question;
class Ask extends Component
{
/**
* Renders the component using the given arguments.
*
* @param string $question
* @param string $default
* @return mixed
*/
public function render($question, $default = null, $multiline = false)
{
return $this->usingQuestionHelper(
fn () => $this->output->askQuestion(
(new Question($question, $default))
->setMultiline($multiline)
)
);
}
}
Function Calls
| None |
Stats
| MD5 | 2f685a264babbf8e67b9e9d0893de400 |
| Eval Count | 0 |
| Decode Time | 87 ms |