Files
ezmigrationbundle/API/BundleAwareInterface.php
2016-07-29 18:15:54 +01:00

19 lines
402 B
PHP

<?php
namespace Kaliop\eZMigrationBundle\API;
use Symfony\Component\HttpKernel\Bundle\BundleInterface;
/**
* The BundleAwareInterface should be implemented by classes that require access to a bundle object.
*/
interface BundleAwareInterface
{
/**
* Sets the bundle
* @param BundleInterface $bundle
* @api
*/
public function setBundle(BundleInterface $bundle = null);
}