for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace WsdlToPhp\WsSecurity;
class Created extends Element
{
public const NAME = 'Created';
public function __construct(int $timestamp, string $namespace = self::NS_WSU)
$this->setTimestampValue($timestamp);
parent::__construct(self::NAME, $namespace, $this->getTimestampValue(true));
}