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

Commit

Permalink
zendframework/zendframework#6646 - Minor CS fixes (alignment)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ocramius committed Jan 3, 2015
1 parent 41afdfe commit a918fa9
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/Prompt/Password.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,8 @@ final class Password extends AbstractPrompt
* @param string $promptText The prompt text to display in console
* @param bool $echo Display the selection after user presses key
*/
public function __construct(
$promptText = 'Password: ',
$echo = false
) {
public function __construct($promptText = 'Password: ', $echo = false)
{
$this->promptText = (string) $promptText;
$this->echo = (bool) $echo;
}
Expand Down

0 comments on commit a918fa9

Please sign in to comment.