for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Raigu\XRoad\SoapEnvelope;
use Raigu\XRoad\SoapEnvelope\Element\AbstractElement;
/**
* I am an issue reference number used in X-Road message
*
* I can inject myself into SOAP envelope header
*/
final class Issue extends AbstractElement
{
* @param string $issue Identifies received application, issue or document
* that was the cause of the service request. This
* field may be used by the client information system
* to connect service requests (and responses) to
* working procedures.
public function __construct(string $issue)
parent::__construct(
new SoapHeaderElement('issue', $issue)
);
}