Mercurial > hg > isophonics-drupal-site
comparison vendor/symfony/console/Helper/TableCell.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 Abdellatif Ait boudad <a.aitboudad@gmail.com> | 17 * @author Abdellatif Ait boudad <a.aitboudad@gmail.com> |
18 */ | 18 */ |
19 class TableCell | 19 class TableCell |
20 { | 20 { |
21 /** | |
22 * @var string | |
23 */ | |
24 private $value; | 21 private $value; |
25 | |
26 /** | |
27 * @var array | |
28 */ | |
29 private $options = array( | 22 private $options = array( |
30 'rowspan' => 1, | 23 'rowspan' => 1, |
31 'colspan' => 1, | 24 'colspan' => 1, |
32 ); | 25 ); |
33 | 26 |