mirror of
https://github.com/jbcr/ezmigrationbundle.git
synced 2026-03-24 17:02:15 +01:00
19 lines
402 B
PHP
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);
|
|
}
|