Skip to content
Merged
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
5 changes: 2 additions & 3 deletions src/Command/InstallModxCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,11 @@ protected function configure()
{
$this
->setName('modx:install')
->setAliases(array('install:modx'))
->setDescription('Downloads, configures and installs a fresh MODX installation. [Note: <info>install:modx</info> will be removed in 1.0, use <info>modx:install</info> instead]')
->setDescription('Downloads, configures and installs a fresh MODX installation.')
->addArgument(
'version',
InputArgument::OPTIONAL,
'The version of MODX to install, in the format 2.3.2-pl. Leave empty or specify "latest" to install the last stable release.',
'The version of MODX to install, in the format 2.8.3-pl. Leave empty or specify "latest" to install the last stable release.',
'latest'
)
->addOption(
Expand Down
3 changes: 1 addition & 2 deletions src/Command/InstallPackageCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@ protected function configure()
{
$this
->setName('package:install')
->setAliases(array('install:package'))
->setDescription('Downloads and installs MODX packages. [Note: <info>install:package</info> will be removed in 1.0, use <info>package:install</info> instead]')
->setDescription('Downloads and installs MODX packages.')
->addArgument(
'package_name',
InputArgument::OPTIONAL,
Expand Down
3 changes: 2 additions & 1 deletion src/Gitify.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
namespace modmore\Gitify;

use Kbjr\Git\Git;
use Kbjr\Git\GitRepo;
use Symfony\Component\Console\Application;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputDefinition;
Expand Down Expand Up @@ -103,7 +104,7 @@ public static function loadConfig()
}

/**
* @return \GitRepo|bool
* @return GitRepo|bool
*/
public function getGitRepository()
{
Expand Down