Laralib\L5scaffold\Commands\ScaffoldMakeCommand::getMeta PHP Méthode

getMeta() public méthode

Get access to $meta array
public getMeta ( ) : array
Résultat array
    public function getMeta()
    {
        return $this->meta;
    }

Usage Example

 /**
  * Compile the controller stub.
  *
  * @return string
  */
 protected function compileControllerStub()
 {
     $stub = $this->files->get(substr(__DIR__, 0, -5) . 'Stubs/controller.stub');
     $this->buildStub($this->scaffoldCommandObj->getMeta(), $stub);
     // $this->replaceValidator($stub);
     return $stub;
 }
All Usage Examples Of Laralib\L5scaffold\Commands\ScaffoldMakeCommand::getMeta