File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
src/Symfony/Component/Console/Output Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -33,17 +33,17 @@ interface OutputInterface
3333 /**
3434 * Writes a message to the output.
3535 *
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-mask-of< 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
3939 */
4040 public function write (string |iterable $ messages , bool $ newline = false , int $ options = 0 );
4141
4242 /**
4343 * Writes a message to the output and adds a newline at the end.
4444 *
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-mask-of< 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
4747 */
4848 public function writeln (string |iterable $ messages , int $ options = 0 );
4949
You can’t perform that action at this time.
0 commit comments