| Total Complexity | 1 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 5 | class Created extends Element |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * Element name. |
||
| 9 | * |
||
| 10 | * @var string |
||
| 11 | */ |
||
| 12 | const NAME = 'Created'; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * Constructor for Created element. |
||
| 16 | * |
||
| 17 | * @param int $_timestamp the timestamp value |
||
| 18 | * @param string $_namespace the namespace |
||
| 19 | */ |
||
| 20 | 54 | public function __construct($_timestamp, $_namespace = self::NS_WSSU) |
|
| 26 |