Mercurial > hg > isophonics-drupal-site
comparison vendor/symfony/serializer/NameConverter/CamelCaseToSnakeCaseNameConverter.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 |
---|---|
20 { | 20 { |
21 private $attributes; | 21 private $attributes; |
22 private $lowerCamelCase; | 22 private $lowerCamelCase; |
23 | 23 |
24 /** | 24 /** |
25 * @param null|array $attributes The list of attributes to rename or null for all attributes | 25 * @param array|null $attributes The list of attributes to rename or null for all attributes |
26 * @param bool $lowerCamelCase Use lowerCamelCase style | 26 * @param bool $lowerCamelCase Use lowerCamelCase style |
27 */ | 27 */ |
28 public function __construct(array $attributes = null, $lowerCamelCase = true) | 28 public function __construct(array $attributes = null, $lowerCamelCase = true) |
29 { | 29 { |
30 $this->attributes = $attributes; | 30 $this->attributes = $attributes; |