Skip to content

Commit

Permalink
Update CreateVuetifyThemeCommand.php
Browse files Browse the repository at this point in the history
  • Loading branch information
usernane committed Dec 28, 2022
1 parent 24af940 commit 5168334
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions themes/vuetifyCore/cli/CreateVuetifyThemeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,26 @@


/**
* Description of CreateVuetifyThemeCommand
* A command which can be used to create a Vuetify based theme template.
*
* @author Ibrahim
*/
class CreateVuetifyThemeCommand extends CLICommand {
/**
* Creates new instance of the class.
*/
public function __construct() {
parent::__construct('create-vuetify-theme', [
], 'Creates a theme which will be based on Vuetify UI framework. The created '
.'theme will be based on one of the wireframes which exist at '
.'https://vuetifyjs.com/en/getting-started/wireframes .');
}
public function exec() {
/**
* Execute the command.
*
* @return int The method will always return 0.
*/
public function exec() : int {
$wireframes = [
"Base","Extended Toolbar", "System Bar",
"Inbox", "Side Navigation",
Expand Down

0 comments on commit 5168334

Please sign in to comment.