Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

Remove Zend\Version no longer makes sense anymore #229

Merged
merged 1 commit into from
Apr 27, 2017
Merged
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
3 changes: 1 addition & 2 deletions src/View/Console/RouteNotFoundStrategy.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
use Zend\Stdlib\ResponseInterface as Response;
use Zend\Stdlib\StringUtils;
use Zend\Text\Table;
use Zend\Version\Version;
use Zend\View\Model\ConsoleModel;

class RouteNotFoundStrategy extends AbstractListenerAggregate
Expand Down Expand Up @@ -204,7 +203,7 @@ protected function getConsoleBanner(ConsoleAdapter $console, ModuleManagerInterf
* Handle an application with no defined banners
*/
if (!count($banners)) {
return sprintf("Zend Framework %s application\nUsage:\n", Version::VERSION);
return "Zend Framework application\nUsage:\n";
}

/*
Expand Down