Mercurial > hg > isophonics-drupal-site
comparison vendor/symfony/console/Output/OutputInterface.php @ 17:129ea1e6d783
Update, including to Drupal core 8.6.10
author | Chris Cannam |
---|---|
date | Thu, 28 Feb 2019 13:21:36 +0000 |
parents | 1fec387a4317 |
children |
comparison
equal
deleted
inserted
replaced
16:c2387f117808 | 17:129ea1e6d783 |
---|---|
31 const OUTPUT_PLAIN = 4; | 31 const OUTPUT_PLAIN = 4; |
32 | 32 |
33 /** | 33 /** |
34 * Writes a message to the output. | 34 * Writes a message to the output. |
35 * | 35 * |
36 * @param string|array $messages The message as an array of lines or a single string | 36 * @param string|array $messages The message as an array of strings or a single string |
37 * @param bool $newline Whether to add a newline | 37 * @param bool $newline Whether to add a newline |
38 * @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 | 38 * @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 |
39 */ | 39 */ |
40 public function write($messages, $newline = false, $options = 0); | 40 public function write($messages, $newline = false, $options = 0); |
41 | 41 |
42 /** | 42 /** |
43 * Writes a message to the output and adds a newline at the end. | 43 * Writes a message to the output and adds a newline at the end. |
44 * | 44 * |
45 * @param string|array $messages The message as an array of lines of a single string | 45 * @param string|array $messages The message as an array of strings or a single string |
46 * @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 | 46 * @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 |
47 */ | 47 */ |
48 public function writeln($messages, $options = 0); | 48 public function writeln($messages, $options = 0); |
49 | 49 |
50 /** | 50 /** |