| 1 | <?php |
||
| 10 | class ValueUpdatedCommand implements CommandInterface { |
||
| 11 | |||
| 12 | /** |
||
| 13 | * The ID for the details element. |
||
| 14 | * |
||
| 15 | * @var string |
||
| 16 | */ |
||
| 17 | protected $details_id; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Constructor. |
||
| 21 | * |
||
| 22 | * @param string $details_id |
||
| 23 | * The ID for the details element. |
||
| 24 | */ |
||
| 25 | public function __construct($details_id) { |
||
| 28 | |||
| 29 | /** |
||
| 30 | * {@inheritdoc} |
||
| 31 | */ |
||
| 32 | public function render() { |
||
| 38 | |||
| 39 | } |
||
| 40 |