Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
29 | protected function doExecute(ProfileContext $context) |
||
30 | { |
||
31 | $ownEntityDescriptor = $context->getOwnEntityDescriptor(); |
||
32 | |||
33 | $issuer = new Issuer($ownEntityDescriptor->getEntityID()); |
||
34 | $issuer->setFormat(SamlConstants::NAME_ID_FORMAT_ENTITY); |
||
35 | |||
36 | MessageContextHelper::asSamlMessage($context->getOutboundContext()) |
||
37 | ->setIssuer($issuer); |
||
38 | |||
39 | $this->logger->debug( |
||
40 | sprintf('Issuer set to "%s"', $ownEntityDescriptor->getEntityID()), |
||
41 | LogHelper::getActionContext($context, $this) |
||
42 | ); |
||
45 |