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 Livewire\Features\SupportConsoleCommands\Commands; use Illuminate\Consol..
Decoded Output download
<?php
namespace Livewire\Features\SupportConsoleCommands\Commands;
use Illuminate\Console\GeneratorCommand;
use Illuminate\Support\Facades\File;
use Symfony\Component\Console\Attribute\AsCommand;
#[AsCommand(name: 'livewire:form')]
class FormCommand extends GeneratorCommand
{
/**
* The console command name.
*
* @var string
*/
protected $signature = 'livewire:form {name} {--force}';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Create a new Livewire form class';
/**
* The type of class being generated.
*
* @var string
*/
protected $type = 'Form';
/**
* Get the stub file for the generator.
*
* @return string
*/
public function getStub()
{
if (File::exists(base_path('stubs/livewire.form.stub'))) {
return base_path('stubs/livewire.form.stub');
}
return __DIR__ . DIRECTORY_SEPARATOR . 'livewire.form.stub';
}
/**
* Get the default namespace for the class.
*
* @param string $rootNamespace
* @return string
*/
public function getDefaultNamespace($rootNamespace)
{
return $rootNamespace . '\Livewire\Forms';
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Livewire\Features\SupportConsoleCommands\Commands;
use Illuminate\Console\GeneratorCommand;
use Illuminate\Support\Facades\File;
use Symfony\Component\Console\Attribute\AsCommand;
#[AsCommand(name: 'livewire:form')]
class FormCommand extends GeneratorCommand
{
/**
* The console command name.
*
* @var string
*/
protected $signature = 'livewire:form {name} {--force}';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Create a new Livewire form class';
/**
* The type of class being generated.
*
* @var string
*/
protected $type = 'Form';
/**
* Get the stub file for the generator.
*
* @return string
*/
public function getStub()
{
if (File::exists(base_path('stubs/livewire.form.stub'))) {
return base_path('stubs/livewire.form.stub');
}
return __DIR__ . DIRECTORY_SEPARATOR . 'livewire.form.stub';
}
/**
* Get the default namespace for the class.
*
* @param string $rootNamespace
* @return string
*/
public function getDefaultNamespace($rootNamespace)
{
return $rootNamespace . '\Livewire\Forms';
}
}
Function Calls
None |
Stats
MD5 | 7bea7c064f384cd3fb2b5af9b6762917 |
Eval Count | 0 |
Decode Time | 92 ms |