Skip to content

Commit

Permalink
Update console application name and version
Browse files Browse the repository at this point in the history
  • Loading branch information
ramsey committed Sep 28, 2015
1 parent f479a7d commit 6739aef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Application.php
Expand Up @@ -26,6 +26,6 @@ class Application extends BaseApplication
public function __construct()
{
Util\ErrorHandler::register();
parent::__construct('uuid', Uuid::VERSION);
parent::__construct('ramsey/uuid-console', '1.0');
}
}
3 changes: 1 addition & 2 deletions tests/ApplicationTest.php
Expand Up @@ -14,7 +14,6 @@ public function testConstructor()
restore_error_handler();

$this->assertInstanceOf('Ramsey\\Uuid\\Console\\Application', $app);
$this->assertEquals('uuid', $app->getName());
$this->assertEquals(\Ramsey\Uuid\Uuid::VERSION, $app->getVersion());
$this->assertEquals('ramsey/uuid-console', $app->getName());
}
}

0 comments on commit 6739aef

Please sign in to comment.