@@ -18,7 +18,7 @@ |
||
| 18 | 18 | * |
| 19 | 19 | * @return int |
| 20 | 20 | */ |
| 21 | - public function execute(?array $sources=null): int; |
|
| 21 | + public function execute(?array $sources = null): int; |
|
| 22 | 22 | |
| 23 | 23 | //-------------------------------------------------------------------------------------------------------------------- |
| 24 | 24 | } |
@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | //-------------------------------------------------------------------------------------------------------------------- |
| 42 | 42 | public function logDebug() |
| 43 | 43 | { |
| 44 | - if ($this->getVerbosity()>=OutputInterface::VERBOSITY_DEBUG) |
|
| 44 | + if ($this->getVerbosity() >= OutputInterface::VERBOSITY_DEBUG) |
|
| 45 | 45 | { |
| 46 | 46 | $args = func_get_args(); |
| 47 | 47 | $format = array_shift($args); |
@@ -53,7 +53,7 @@ discard block |
||
| 53 | 53 | //-------------------------------------------------------------------------------------------------------------------- |
| 54 | 54 | public function logInfo() |
| 55 | 55 | { |
| 56 | - if ($this->getVerbosity()>=OutputInterface::VERBOSITY_NORMAL) |
|
| 56 | + if ($this->getVerbosity() >= OutputInterface::VERBOSITY_NORMAL) |
|
| 57 | 57 | { |
| 58 | 58 | $args = func_get_args(); |
| 59 | 59 | $format = array_shift($args); |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | //-------------------------------------------------------------------------------------------------------------------- |
| 66 | 66 | public function logNote() |
| 67 | 67 | { |
| 68 | - if ($this->getVerbosity()>=OutputInterface::VERBOSITY_NORMAL) |
|
| 68 | + if ($this->getVerbosity() >= OutputInterface::VERBOSITY_NORMAL) |
|
| 69 | 69 | { |
| 70 | 70 | $args = func_get_args(); |
| 71 | 71 | $format = array_shift($args); |
@@ -77,7 +77,7 @@ discard block |
||
| 77 | 77 | //-------------------------------------------------------------------------------------------------------------------- |
| 78 | 78 | public function logVerbose() |
| 79 | 79 | { |
| 80 | - if ($this->getVerbosity()>=OutputInterface::VERBOSITY_VERBOSE) |
|
| 80 | + if ($this->getVerbosity() >= OutputInterface::VERBOSITY_VERBOSE) |
|
| 81 | 81 | { |
| 82 | 82 | $args = func_get_args(); |
| 83 | 83 | $format = array_shift($args); |
@@ -89,7 +89,7 @@ discard block |
||
| 89 | 89 | //-------------------------------------------------------------------------------------------------------------------- |
| 90 | 90 | public function logVeryVerbose() |
| 91 | 91 | { |
| 92 | - if ($this->getVerbosity()>=OutputInterface::VERBOSITY_VERY_VERBOSE) |
|
| 92 | + if ($this->getVerbosity() >= OutputInterface::VERBOSITY_VERY_VERBOSE) |
|
| 93 | 93 | { |
| 94 | 94 | $args = func_get_args(); |
| 95 | 95 | $format = array_shift($args); |