* For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Clastic\BlockBundle\Module; use Clastic\CoreBundle\Module\ModuleInterface; /** * @author Dries De Peuter */ class BlockModule implements ModuleInterface { /** * The name of the module. * * @return string */ public function getName() { return 'Block'; } /** * The the unique identifier of the module. * * @return string */ public function getIdentifier() { return 'block'; } }