comparison vendor/symfony/console/Helper/TableSeparator.php @ 14:1fec387a4317

Update Drupal core to 8.5.2 via Composer
author Chris Cannam
date Mon, 23 Apr 2018 09:46:53 +0100
parents 4c8ae668cc8c
children 129ea1e6d783
comparison
equal deleted inserted replaced
13:5fb285c0d0e3 14:1fec387a4317
16 * 16 *
17 * @author Fabien Potencier <fabien@symfony.com> 17 * @author Fabien Potencier <fabien@symfony.com>
18 */ 18 */
19 class TableSeparator extends TableCell 19 class TableSeparator extends TableCell
20 { 20 {
21 /**
22 * @param array $options
23 */
24 public function __construct(array $options = array()) 21 public function __construct(array $options = array())
25 { 22 {
26 parent::__construct('', $options); 23 parent::__construct('', $options);
27 } 24 }
28 } 25 }