You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 27, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: src/KernelOutput.php
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -54,7 +54,7 @@ public function __construct(ExecuteAction $executeAction, LoggerInterface $logge
54
54
* @param bool $newline Whether to add a newline
55
55
* @param int $options A bitmask of options (one of the OUTPUT or VERBOSITY constants), 0 is considered the same as self::OUTPUT_NORMAL | self::VERBOSITY_NORMAL
@@ -90,7 +90,7 @@ public function write($messages, bool $newline = false, int $options = self::OUT
90
90
* @param string|array $messages The message as an array of lines of a single string
91
91
* @param int $options A bitmask of options (one of the OUTPUT or VERBOSITY constants), 0 is considered the same as self::OUTPUT_NORMAL | self::VERBOSITY_NORMAL
92
92
*/
93
-
publicfunctionwriteln($messages, int$options = 0)
93
+
publicfunctionwriteln($messages, $options = 0)
94
94
{
95
95
$this->write($messages, true, $options);
96
96
}
@@ -100,7 +100,7 @@ public function writeln($messages, int $options = 0)
100
100
*
101
101
* @param int $level The level of verbosity (one of the VERBOSITY constants)
102
102
*/
103
-
publicfunctionsetVerbosity(int$level)
103
+
publicfunctionsetVerbosity($level)
104
104
{
105
105
// TODO: Implement setVerbosity() method.
106
106
}
@@ -159,7 +159,7 @@ public function isDebug(): bool
159
159
* Sets the decorated flag.
160
160
* @param bool $decorated Whether to decorate the messages
0 commit comments