for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the LightSAML-IDP package.
*
* (c) Milos Tomic <[email protected]>
* This source file is subject to the GPL-3 license that is bundled
* with this source code in the file LICENSE.
*/
namespace LightSaml\Idp\Builder\Profile\WebBrowserSso\Idp;
use LightSaml\Idp\Builder\Action\Profile\SingleSignOn\Idp\SsoIdpReceiveRequestActionBuilder;
use LightSaml\Builder\Profile\AbstractProfileBuilder;
use LightSaml\Context\Profile\ProfileContext;
use LightSaml\Profile\Profiles;
class SsoIdpReceiveAuthnRequestProfileBuilder extends AbstractProfileBuilder
{
/**
* @return string
protected function getProfileId()
return Profiles::SSO_IDP_RECEIVE_AUTHN_REQUEST;
}
protected function getProfileRole()
return ProfileContext::ROLE_IDP;
* @return \LightSaml\Builder\Action\ActionBuilderInterface
protected function getActionBuilder()
return new SsoIdpReceiveRequestActionBuilder($this->container);