for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace DMK\MKSamlAuth\Container;
use DMK\MKSamlAuth\Store\CredentialStore;
use LightSaml\Build\Container\CredentialContainerInterface;
use LightSaml\Store\Credential\CredentialStoreInterface;
use TYPO3\CMS\Core\SingletonInterface;
use TYPO3\CMS\Extbase\Object\Container\Container;
class CredentialContainer implements CredentialContainerInterface, SingletonInterface
{
/**
* @var SingletonContainer
*/
private $container;
public function __construct(SingletonContainer $container)
$this->container = $container;
}
public function getCredentialStore()
return $this->container->getInstance(CredentialStore::class);