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