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\Tables\Columns\Concerns; use Closure; trait HasSpace { pro..
Decoded Output download
<?php
namespace Filament\Tables\Columns\Concerns;
use Closure;
trait HasSpace
{
protected int | string | Closure | null $space = null;
public function space(int | string | Closure | null $space = 1): static
{
$this->space = $space;
return $this;
}
public function getSpace(): int | string | null
{
return $this->evaluate($this->space);
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Filament\Tables\Columns\Concerns;
use Closure;
trait HasSpace
{
protected int | string | Closure | null $space = null;
public function space(int | string | Closure | null $space = 1): static
{
$this->space = $space;
return $this;
}
public function getSpace(): int | string | null
{
return $this->evaluate($this->space);
}
}
Function Calls
None |
Stats
MD5 | b3e590d3fb9665961d180488a8eb4b42 |
Eval Count | 0 |
Decode Time | 122 ms |