| 1 | <?php |
||
| 17 | class ValueWithBootstrap extends Object |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @var string the PHP code represented by this object. |
||
| 21 | */ |
||
| 22 | public $bootstrap; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @var mixed the value represented by this object. |
||
| 26 | */ |
||
| 27 | public $value; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Creates a new object. |
||
| 31 | * |
||
| 32 | * @param mixed $value the value represented by this object. |
||
| 33 | * @param string $bootstrap the PHP code represented by this object. |
||
| 34 | * @param array $config name-value pairs that will be used to initialize the object properties. |
||
| 35 | */ |
||
| 36 | 5 | public function __construct($value, $bootstrap, $config = []) |
|
| 42 | } |
||
| 43 |