codeigniter-matches-cli icon indicating copy to clipboard operation
codeigniter-matches-cli copied to clipboard

No return carriage return at several message ends.

Open jcandan opened this issue 7 years ago • 0 comments

Problem:

Several message endings do not include a carriage return. This causes the message to line up with the command line prompt like so:

$ php index.php matches create:controller pages

Pages Controller already exists in the application/controllers directory. $ 

Fixing this should result in a cleaner representation of messages and the terminal prompt, like so:

$ php index.php matches create:controller pages

Pages Controller already exists in the application/controllers directory. 
$ 

Proposed resolution

Add the provided $this->_ret to the end of messages where this is missing.

jcandan avatar Aug 29 '18 02:08 jcandan