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

commandComment() public method

public commandComment ( $message )
    public function commandComment($message)
    {
        $this->commandObj->comment($message);
    }

Usage Example

 public function rollback()
 {
     if (Str::contains($this->menuContents, $this->menuTemplate)) {
         file_put_contents($this->path, str_replace($this->menuTemplate, '', $this->menuContents));
         $this->commandData->commandComment('menu deleted');
     }
 }
All Usage Examples Of InfyOm\Generator\Common\CommandData::commandComment