Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/Command/BootstrapCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,14 @@
*/
class BootstrapCommand extends Command implements CommandCollectionAwareInterface
{
/**
* @return string
*/
public static function getDescription(): string
{
return 'BootstrapUI commands entry point.';
}

/**
* The command collection to get help on.
*
Expand Down
8 changes: 8 additions & 0 deletions src/Command/CopyLayoutsCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,14 @@
*/
class CopyLayoutsCommand extends Command
{
/**
* @return string
*/
public static function getDescription(): string
{
return 'Copy sample layouts to app templates.';
}

/**
* @inheritDoc
*/
Expand Down
8 changes: 8 additions & 0 deletions src/Command/InstallCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,14 @@
*/
class InstallCommand extends Command
{
/**
* @return string
*/
public static function getDescription(): string
{
return 'Install Bootstrap dependencies and link assets.';
}

/**
* @inheritDoc
*/
Expand Down
8 changes: 8 additions & 0 deletions src/Command/ModifyViewCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,14 @@
*/
class ModifyViewCommand extends Command
{
/**
* @return string
*/
public static function getDescription(): string
{
return 'Modify AppView to extend UIView.';
}

/**
* @inheritDoc
*/
Expand Down
Loading