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\Support\Concerns; use Closure; use Illuminate\Contracts\Support..
Decoded Output download
<?php
namespace Filament\Support\Concerns;
use Closure;
use Illuminate\Contracts\Support\Htmlable;
trait HasHeading
{
protected string | Htmlable | Closure | null $heading = null;
public function heading(string | Htmlable | Closure | null $heading = null): static
{
$this->heading = $heading;
return $this;
}
public function getHeading(): string | Htmlable | null
{
return $this->evaluate($this->heading);
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Filament\Support\Concerns;
use Closure;
use Illuminate\Contracts\Support\Htmlable;
trait HasHeading
{
protected string | Htmlable | Closure | null $heading = null;
public function heading(string | Htmlable | Closure | null $heading = null): static
{
$this->heading = $heading;
return $this;
}
public function getHeading(): string | Htmlable | null
{
return $this->evaluate($this->heading);
}
}
Function Calls
None |
Stats
MD5 | 58b96be269126ca37ae8f47bbf17eb4c |
Eval Count | 0 |
Decode Time | 130 ms |