Skip to content

Commit

Permalink
Update displayed defaults answers
Browse files Browse the repository at this point in the history
  • Loading branch information
jedrzejchalubek committed May 25, 2017
1 parent da4295e commit 3e3983f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/CLI/CLI.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ class CLI
* @var array
*/
protected $questions = [
'{{ theme.name }}' => '<comment>Theme Name</comment> [<info>theme.name</info>]',
'{{ theme.url }}' => '<comment>Theme URI</comment> [<info>theme.url</info>]',
'{{ theme.description }}' => '<comment>Theme Description</comment> [<info>theme.description</info>]',
'{{ theme.version }}' => '<comment>Theme Version</comment> [<info>theme.version</info>]',
'{{ theme.author }}' => '<comment>Author</comment> [<info>theme.author</info>]',
'{{ theme.author.url }}' => '<comment>Author URI</comment> [<info>theme.author.url</info>]',
'{{ theme.textdomain }}' => '<comment>Theme Textdomain</comment> [<info>theme.textdomain</info>]',
'App\Theme' => '<comment>Theme Namespace</comment> [<info>App\Theme</info>]',
'{{ theme.name }}' => '<comment>Theme Name</comment> [<info>{{ theme.name }}</info>]',
'{{ theme.url }}' => '<comment>Theme URI</comment> [<info>{{ theme.url }}</info>]',
'{{ theme.description }}' => '<comment>Theme Description</comment> [<info>{{ theme.description }}</info>]',
'{{ theme.version }}' => '<comment>Theme Version</comment> [<info>{{ theme.version }}</info>]',
'{{ theme.author }}' => '<comment>Author</comment> [<info>{{ theme.author }}</info>]',
'{{ theme.author.url }}' => '<comment>Author URI</comment> [<info>{{ theme.author.url }}</info>]',
'{{ theme.textdomain }}' => '<comment>Theme Textdomain</comment> [<info>{{ theme.textdomain }}</info>]',
'App\Theme' => '<comment>Theme Namespace</comment> [<info>{{ App\Theme }}</info>]',
];

/**
Expand Down

0 comments on commit 3e3983f

Please sign in to comment.