1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| <?php
|
| namespace JVBase\managers\SEO\render\Thing\Intangible\Quantity;
|
| use JVBase\managers\SEO\render\Thing\Thing;
|
| if (!defined('ABSPATH')) {
| exit;
| }
|
| class Duration extends Thing
| {
| /**
| * @var string Duration (use ISO 8601 duration format).
| */
| protected string $duration;
| }
|
|