28 lines
1.0 KiB
PHP
28 lines
1.0 KiB
PHP
<?php
|
|
|
|
namespace App\DependencyInjection;
|
|
|
|
use App\SQLLogin\SQLLoginRequest;
|
|
use Symfony\Component\Config\Definition\Builder\TreeBuilder;
|
|
use Symfony\Component\Config\Definition\ConfigurationInterface;
|
|
|
|
class SQLLoginConfiguration implements ConfigurationInterface
|
|
{
|
|
public function getConfigTreeBuilder()
|
|
{
|
|
$treeBuilder = new TreeBuilder('sql_login');
|
|
$treeBuilder->getRootNode()->children()
|
|
->scalarNode(SQLLoginRequest::LOGIN_COLUMN_NAME)->isRequired()->cannotBeEmpty()->end()
|
|
->scalarNode(SQLLoginRequest::PASSWORD_COLUMN_NAME)->isRequired()->cannotBeEmpty()->end()
|
|
->scalarNode(SQLLoginRequest::SALT_COLUMN_NAME)->end()
|
|
->scalarNode(SQLLoginRequest::TABLE_NAME)->isRequired()->cannotBeEmpty()->end()
|
|
->arrayNode(SQLLoginRequest::DATA_TO_FETCH)
|
|
->scalarPrototype()->end()
|
|
->end()
|
|
->scalarNode(SQLLoginRequest::SUBJECT_REWRITE_EXPRESSION)->defaultNull()->end()
|
|
->end();
|
|
|
|
return $treeBuilder;
|
|
}
|
|
}
|