Files
grav-plugin-login-ldap/vendor/symfony/ldap/Tests/LdapTestCase.php
2018-05-07 05:40:25 -06:00

17 lines
291 B
PHP

<?php
namespace Symfony\Component\Ldap\Tests;
use PHPUnit\Framework\TestCase;
class LdapTestCase extends TestCase
{
protected function getLdapConfig()
{
return array(
'host' => getenv('LDAP_HOST'),
'port' => getenv('LDAP_PORT'),
);
}
}