Skip to content

Commit

Permalink
Change extension alias from "open_sky_ldap" to "opensky_ldap"
Browse files Browse the repository at this point in the history
  • Loading branch information
jmikola committed May 17, 2011
1 parent b34fd7b commit c2613b3
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
6 changes: 3 additions & 3 deletions DependencyInjection/OpenSkyLdapExtension.php
Expand Up @@ -33,11 +33,11 @@ public function load(array $configs, ContainerBuilder $container)
}

/**
* @see Symfony\Component\DependencyInjection\Extension.ExtensionInterface::getAlias()
* @see Symfony\Component\DependencyInjection\Extension\ExtensionInterface::getAlias()
* @codeCoverageIgnore
*/
public function getAlias()
{
return 'open_sky_ldap';
return 'opensky_ldap';
}
}
}
15 changes: 8 additions & 7 deletions OpenSkyLdapBundle.php
Expand Up @@ -2,12 +2,13 @@

namespace OpenSky\Bundle\LdapBundle;

use OpenSky\Bundle\LdapBundle\DependencyInjection\OpenSkyLdapExtension;
use Symfony\Component\HttpKernel\Bundle\Bundle;

/**
* OpenSkyLdapBundle.
*
* @author Jeremy Mikola <jmikola@gmail.com>
* @codeCoverageIgnore
*/
class OpenSkyLdapBundle extends Bundle {}
class OpenSkyLdapBundle extends Bundle
{
public function __construct()
{
$this->extension = new OpenSkyLdapExtension();
}
}

0 comments on commit c2613b3

Please sign in to comment.