for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace SimpleSAML\WSSecurity\XML\wsx;
use SimpleSAML\XML\{SchemaValidatableElementInterface, SchemaValidatableElementTrait};
use SimpleSAML\XML\URIElementTrait;
/**
* An Location element
*
* @package simplesamlphp/ws-security
*/
final class Location extends AbstractWsxElement implements SchemaValidatableElementInterface
{
use SchemaValidatableElementTrait;
SimpleSAML\XML\SchemaValidatableElementTrait
SimpleSAML\WSSecurity\XML\wsx\Location
$message
$line
use URIElementTrait;
* @param string $content
public function __construct(string $content)
$this->setContent($content);
}