From 530719bd95c240e02af1c4a02c9177a07cf74338 Mon Sep 17 00:00:00 2001 From: Mark Story Date: Fri, 4 Sep 2015 21:58:32 -0400 Subject: [PATCH] Remove welcome message and remove dead paths. Welcome messages on tasks make no sense, the excluded paths no longer exist, so they can be removed entirely. Refs #7345 --- src/Shell/Task/ExtractTask.php | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/src/Shell/Task/ExtractTask.php b/src/Shell/Task/ExtractTask.php index e92e30c41ad..0830ac997b1 100644 --- a/src/Shell/Task/ExtractTask.php +++ b/src/Shell/Task/ExtractTask.php @@ -105,6 +105,15 @@ class ExtractTask extends Shell */ protected $_extractCore = false; + /** + * No welcome message. + * + * @return void + */ + protected function _welcome() + { + } + /** * Method to interact with the User and get path selections. * @@ -182,10 +191,6 @@ public function main() if ($this->_extractCore) { $this->_paths[] = CAKE; - $this->_exclude = array_merge($this->_exclude, [ - CAKE . 'Test', - CAKE . 'Console' . DS . 'Templates' - ]); } if (isset($this->params['output'])) {