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\wst_200502;
use SimpleSAML\XML\URIElementTrait;
/**
* An EncryptWith element
*
* @package simplesamlphp/ws-security
*/
final class EncryptWith extends AbstractWstElement
{
use URIElementTrait;
* @param string $content
public function __construct(string $content)
$this->setContent($content);
}