Ejemplo n.º 1
0
 /**
  * Get stub template for generated file.
  *
  * @return string
  */
 public function getStub()
 {
     Stub::setBasePath(config('generators.template_path', __DIR__ . '/Stubs') . '/');
     $stub = new Stub($this->stub . '.stub', $this->getReplacements());
     return $stub->render();
 }
Ejemplo n.º 2
0
 /**
  * Get stub template for generated file.
  *
  * @return string
  */
 public function getStub()
 {
     $stub = new Stub($this->stub . '.stub', $this->getReplacements());
     $stub->setBasePath(__DIR__ . '/Stubs/');
     return $stub->render();
 }