for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @copyright Copyright (c) Flipbox Digital Limited
*/
namespace flipbox\saml\sp\traits;
use flipbox\saml\core\SamlPluginInterface;
use flipbox\saml\core\traits\EnsureSamlPlugin;
use flipbox\saml\sp\records\ProviderIdentityRecord;
use flipbox\saml\sp\records\ProviderRecord;
use flipbox\saml\sp\Saml;
trait SamlPluginEnsured
{
* @see EnsureSamlPlugin
* @return SamlPluginInterface
protected function getSamlPlugin(): SamlPluginInterface
return Saml::getInstance();
}