InfyOm\Generator\Common\CommandData::commandInfo PHP Method

commandInfo() public method

public commandInfo ( $message )
    public function commandInfo($message)
    {
        $this->commandObj->info($message);
    }

Usage Example

 private function generateUpdateRequest()
 {
     $templateData = TemplateUtil::getTemplate('scaffold.request.update_request', 'laravel-generator');
     $templateData = TemplateUtil::fillTemplate($this->commandData->dynamicVars, $templateData);
     FileUtil::createFile($this->path, $this->updateFileName, $templateData);
     $this->commandData->commandComment("\nUpdate Request created: ");
     $this->commandData->commandInfo($this->updateFileName);
 }
All Usage Examples Of InfyOm\Generator\Common\CommandData::commandInfo