Skip to content
This repository has been archived by the owner on May 30, 2019. It is now read-only.

Commit

Permalink
ElcodiCoreBundle does not require any dependency
Browse files Browse the repository at this point in the history
* Removed interface
  • Loading branch information
mmoreram committed Mar 25, 2015
1 parent ec97878 commit f59cfbc
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions src/Elcodi/Bundle/CoreBundle/ElcodiCoreBundle.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
use Symfony\Component\HttpKernel\Bundle\Bundle;

use Elcodi\Bundle\CoreBundle\DependencyInjection\ElcodiCoreExtension;
use Elcodi\Bundle\CoreBundle\Interfaces\DependentBundleInterface;

/**
* ElcodiCoreBundle Bundle
Expand All @@ -30,7 +29,7 @@
* All available bundles in this suite could have this bundle as a main
* dependency.
*/
class ElcodiCoreBundle extends Bundle implements DependentBundleInterface
class ElcodiCoreBundle extends Bundle
{
/**
* Returns the bundle's container extension.
Expand All @@ -41,14 +40,4 @@ public function getContainerExtension()
{
return new ElcodiCoreExtension();
}

/**
* Create instance of current bundle, and return dependent bundle namespaces
*
* @return array Bundle instances
*/
public static function getBundleDependencies()
{
return [];
}
}

0 comments on commit f59cfbc

Please sign in to comment.