ds-codigos-postales-ine-es/scripts/ine/vendor/maximebf/consolekit/tests/ConsoleKit/Tests/TestCommand.php
2016-11-14 21:46:43 +01:00

18 lines
400 B
PHP

<?php
namespace ConsoleKit\Tests;
class TestCommand extends \ConsoleKit\Command
{
public function execute(array $args, array $opts = array())
{
$name = 'unknown';
if (!empty($args)) {
$name = implode(' ', $args);
} else if (isset($opts['name'])) {
$name = $opts['name'];
}
$this->writeln(sprintf("hello %s!", $name));
}
}