Initial commit of LDAP plugin
This commit is contained in:
16
vendor/symfony/ldap/Tests/LdapTestCase.php
vendored
Normal file
16
vendor/symfony/ldap/Tests/LdapTestCase.php
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
<?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'),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user