mirror of
https://github.com/JBDevLabs/ezmigrationbundle.git
synced 2026-04-28 10:33:09 +02:00
21 lines
435 B
PHP
21 lines
435 B
PHP
<?php
|
|
|
|
namespace Kaliop\eZMigrationBundle\Core\Executor;
|
|
|
|
use Kaliop\eZMigrationBundle\API\Value\MigrationStep;
|
|
|
|
class PHPExecutor extends AbstractExecutor
|
|
{
|
|
protected $supportedStepTypes = array('php_method', 'php_class', 'symfony_service');
|
|
|
|
/**
|
|
* @param MigrationStep $step
|
|
* @return void
|
|
*/
|
|
public function execute(MigrationStep $step)
|
|
{
|
|
parent::execute($step);
|
|
|
|
/// @todo !!!
|
|
}
|
|
} |