| Path : /var/www/html/phkaymedia/vendor/livewire/livewire/src/Commands/ |
|
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
| Current File : //var/www/html/phkaymedia/vendor/livewire/livewire/src/Commands/StubParser.php |
<?php
namespace Livewire\Commands;
use Illuminate\Support\Str;
use function Livewire\str;
class StubParser extends ComponentParser
{
public function __construct($classNamespace, $viewPath, $rawCommand)
{
$this->baseClassNamespace = $classNamespace;
$classPath = static::generatePathFromNamespace($classNamespace);
$this->baseClassPath = rtrim($classPath, DIRECTORY_SEPARATOR).'/Stubs/';
$this->baseViewPath = rtrim($viewPath, DIRECTORY_SEPARATOR).'/stubs/';
$directories = preg_split('/[.\/]+/', $rawCommand);
$this->component = str(array_pop($directories))->kebab();
$this->componentClass = str($this->component)->studly();
$this->directories = array_map([Str::class, 'studly'], $directories);
}
public function classFile()
{
return $this->componentClass.'.stub';
}
public function viewFile()
{
return $this->component.'.stub';
}
public function classContents($inline = false)
{
return file_get_contents(__DIR__.DIRECTORY_SEPARATOR.'Component.stub');
}
}