Skip to content

Commit

Permalink
Updated success message of generator commands
Browse files Browse the repository at this point in the history
  • Loading branch information
sanjoydesk committed Apr 5, 2015
1 parent f701dad commit 20bf30c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Cygnite/Console/Command/ControllerGeneratorCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
throw $e;
}

$output->writeln('<info>Controller Generated Successfully By Cygnite Cli.</info>');
$output->writeln('<info>Controller '.$this->controller.' Generated Successfully By Cygnite Cli.</info>');
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/Cygnite/Console/Command/FormGeneratorCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
$this->applicationDir = BASE_PATH.DS.APP_PATH;
$this->generateForm();

$output->writeln("<info>Form apps/components/form/".Inflector::classify($this->table)."Form Generated Successfully By Cygnite Cli.</info>");
$output->writeln("<info>Form ".APP_PATH."/components/form/".Inflector::classify($this->table)."Form.php Generated Successfully By Cygnite Cli.</info>");
}


Expand Down

0 comments on commit 20bf30c

Please sign in to comment.