comparison vendor/symfony/console/Input/ArrayInput.php @ 5:12f9dff5fda9 tip

Update to Drupal core 8.7.1
author Chris Cannam
date Thu, 09 May 2019 15:34:47 +0100
parents a9cd425dd02b
children
comparison
equal deleted inserted replaced
4:a9cd425dd02b 5:12f9dff5fda9
17 /** 17 /**
18 * ArrayInput represents an input provided as an array. 18 * ArrayInput represents an input provided as an array.
19 * 19 *
20 * Usage: 20 * Usage:
21 * 21 *
22 * $input = new ArrayInput(['name' => 'foo', '--bar' => 'foobar']); 22 * $input = new ArrayInput(['command' => 'foo:bar', 'foo' => 'bar', '--bar' => 'foobar']);
23 * 23 *
24 * @author Fabien Potencier <fabien@symfony.com> 24 * @author Fabien Potencier <fabien@symfony.com>
25 */ 25 */
26 class ArrayInput extends Input 26 class ArrayInput extends Input
27 { 27 {