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 Filament\Infolists\Components\Concerns; use Closure; use Illuminate\Cont..
Decoded Output download
<?php
namespace Filament\Infolists\Components\Concerns;
use Closure;
use Illuminate\Contracts\Support\Htmlable;
trait HasHelperText
{
protected string | Htmlable | Closure | null $helperText = null;
public function helperText(string | Htmlable | Closure | null $text): static
{
$this->helperText = $text;
return $this;
}
public function getHelperText(): string | Htmlable | null
{
return $this->evaluate($this->helperText);
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Filament\Infolists\Components\Concerns;
use Closure;
use Illuminate\Contracts\Support\Htmlable;
trait HasHelperText
{
protected string | Htmlable | Closure | null $helperText = null;
public function helperText(string | Htmlable | Closure | null $text): static
{
$this->helperText = $text;
return $this;
}
public function getHelperText(): string | Htmlable | null
{
return $this->evaluate($this->helperText);
}
}
Function Calls
None |
Stats
MD5 | 2d222ea2fcd1db6e4216172f9524be21 |
Eval Count | 0 |
Decode Time | 101 ms |