File "ComponentParserFromExistingComponent.php"
Full Path: /home/fundopuh/trader.fxex.org/vendor/livewire/livewire/src/Commands/ComponentParserFromExistingComponent.php
File size: 931 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Livewire\Commands;
class ComponentParserFromExistingComponent extends ComponentParser
{
protected $existingParser;
public function __construct($classNamespace, $viewPath, $rawCommand, $existingParser)
{
$this->existingParser = $existingParser;
parent::__construct($classNamespace, $viewPath, $rawCommand);
}
public function classContents($inline = false)
{
$originalFile = file_get_contents($this->existingParser->classPath());
$escapedClassNamespace = preg_replace('/\\\/', '\\\\\\', $this->existingParser->classNamespace());
return preg_replace_array(
["/namespace {$escapedClassNamespace}/", "/class {$this->existingParser->className()}/", "/{$this->existingParser->viewName()}/"],
["namespace {$this->classNamespace()}", "class {$this->className()}", $this->viewName()],
$originalFile
);
}
}