File tree 1 file changed +5
-5
lines changed
Filter options
src/Symfony/Component/Console/Output
1 file changed +5
-5
lines changed
Original file line number Diff line number Diff line change @@ -33,17 +33,17 @@ interface OutputInterface
33
33
/**
34
34
* Writes a message to the output.
35
35
*
36
- * @param bool $newline Whether to add a newline
37
- * @param self::VERBOSITY_*|self::OUTPUT_* $options A bitmask of options (one of the OUTPUT or VERBOSITY constants),
38
- * 0 is considered the same as self::OUTPUT_NORMAL | self::VERBOSITY_NORMAL
36
+ * @param bool $newline Whether to add a newline
37
+ * @param int $options A bitmask of options (one of the OUTPUT or VERBOSITY constants),
38
+ * 0 is considered the same as self::OUTPUT_NORMAL | self::VERBOSITY_NORMAL
39
39
*/
40
40
public function write (string |iterable $ messages , bool $ newline = false , int $ options = 0 );
41
41
42
42
/**
43
43
* Writes a message to the output and adds a newline at the end.
44
44
*
45
- * @param self::VERBOSITY_*|self::OUTPUT_* $options A bitmask of options (one of the OUTPUT or VERBOSITY constants),
46
- * 0 is considered the same as self::OUTPUT_NORMAL | self::VERBOSITY_NORMAL
45
+ * @param int $options A bitmask of options (one of the OUTPUT or VERBOSITY constants),
46
+ * 0 is considered the same as self::OUTPUT_NORMAL | self::VERBOSITY_NORMAL
47
47
*/
48
48
public function writeln (string |iterable $ messages , int $ options = 0 );
49
49
You can’t perform that action at this time.
0 commit comments