EnumValue.php
Same filename in this branch
Same filename and directory in other branches
Namespace
Drupal\Tests\Component\SerializationFile
-
core/
tests/ Drupal/ Tests/ Component/ Serialization/ EnumValue.php
View source
<?php
declare (strict_types=1);
namespace Drupal\Tests\Component\Serialization;
/**
* Represents options for a boolean-like value.
*/
enum EnumValue
{
case Yes;
case No;
case Maybe;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.