Skip to content

Commit

Permalink
Merge branch 'master' into addition/confirm-yes
Browse files Browse the repository at this point in the history
  • Loading branch information
Ronan Dowling committed Sep 14, 2016
2 parents 8c511fd + 41dcd1d commit 496c398
Show file tree
Hide file tree
Showing 8 changed files with 959 additions and 904 deletions.
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -30,7 +30,7 @@
"autoload-dev": {
"psr-4": {
"Pantheon\\Terminus\\UnitTests\\": "tests/new_unit_tests/",
"Pantheon\\Terminus\\Tests\\": "tests/"
"Pantheon\\Terminus\\FeatureTests\\": "tests/active_features/bootstrap/"
}
},
"require-dev": {
Expand Down
2 changes: 1 addition & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion scripts/lint.sh
Expand Up @@ -18,14 +18,17 @@ eval $cmd

#Run PHP Code Sniffer on command files using a standards subset excepting long lines
phpcs="vendor/bin/phpcs --standard=tests/config/context_standards.xml --extensions=php --warning-severity=6 --error-severity=1"
cmd=$phpcs+" tests/features/bootstrap/FeatureContext.php tests/active_features/bootstrap/FeatureContext.php"
cmd=$phpcs+" tests/features/bootstrap/FeatureContext.php"
eval $cmd

#Enforce PSR2 on 1.x
phpcs="vendor/bin/phpcs --standard=PSR2 --extensions=php"
cmd=$phpcs+" tests/new_unit_tests/*"
eval $cmd

cmd=$phpcs+" tests/active_features/bootstrap/*"
eval $cmd

cmd=$phpcs+" bin/terminus.php"
eval $cmd

Expand Down
3 changes: 0 additions & 3 deletions src/Commands/ArtCommand.php
Expand Up @@ -2,15 +2,12 @@

namespace Pantheon\Terminus\Commands;

use Symfony\Component\Console\Output\OutputInterface;

class ArtCommand extends TerminusCommand
{
/**
* Displays Pantheon ASCII artwork
*
* @name art
* @authorize
*
* @param string $name Name of the artwork to select
* @usage terminus art rocket
Expand Down

0 comments on commit 496c398

Please sign in to comment.