Mercurial > hg > isophonics-drupal-site
comparison vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Case_.php @ 17:129ea1e6d783
Update, including to Drupal core 8.6.10
author | Chris Cannam |
---|---|
date | Thu, 28 Feb 2019 13:21:36 +0000 |
parents | 5fb285c0d0e3 |
children |
comparison
equal
deleted
inserted
replaced
16:c2387f117808 | 17:129ea1e6d783 |
---|---|
4 | 4 |
5 use PhpParser\Node; | 5 use PhpParser\Node; |
6 | 6 |
7 class Case_ extends Node\Stmt | 7 class Case_ extends Node\Stmt |
8 { | 8 { |
9 /** @var null|Node\Expr $cond Condition (null for default) */ | 9 /** @var null|Node\Expr Condition (null for default) */ |
10 public $cond; | 10 public $cond; |
11 /** @var Node\Stmt[] Statements */ | 11 /** @var Node\Stmt[] Statements */ |
12 public $stmts; | 12 public $stmts; |
13 | 13 |
14 /** | 14 /** |