for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace flipbox\saml\sp\migrations;
use flipbox\saml\core\migrations\AbstractInstall;
use flipbox\saml\sp\records\ProviderIdentityRecord;
use flipbox\saml\sp\records\ProviderRecord;
use flipbox\saml\sp\Saml;
use yii\base\Module;
/**
* @author Flipbox Factory <[email protected]>
* @since 1.0.0
*/
class Install extends AbstractInstall
{
* @inheritdoc
protected function getModule(): Module
return Saml::getInstance();
}
protected function getProviderTableName(): string
return ProviderRecord::tableName();
protected function getIdentityTableName(): string
return ProviderIdentityRecord::tableName();