Skip to content
This repository was archived by the owner on Dec 7, 2019. It is now read-only.
Open
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
6 changes: 1 addition & 5 deletions src/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -552,14 +552,10 @@ protected function setupAutocompleteCommand(RouteCollection $routeCollection, Di
}

/**
* Set CLI process title (PHP versions >= 5.5)
* Set CLI process title
*/
protected function setProcessTitle()
{
if (version_compare(PHP_VERSION, '5.5', 'lt')) {
return;
}

// Mac OS X does not support cli_set_process_title() due to security issues
// Bug fix for issue https://github.com/zfcampus/zf-console/issues/21
if (PHP_OS == 'Darwin') {
Expand Down