mirror of
https://github.com/jbcr/ezmigrationbundle.git
synced 2026-03-30 12:42:24 +02:00
23 lines
450 B
PHP
23 lines
450 B
PHP
<?php
|
|
|
|
namespace Kaliop\eZMigrationBundle\API\Value;
|
|
|
|
/**
|
|
* @property-read string $type
|
|
* @property-read array $dsl
|
|
* @property-read array $context
|
|
*/
|
|
class MigrationStep extends AbstractValue
|
|
{
|
|
protected $type;
|
|
protected $dsl;
|
|
protected $context;
|
|
|
|
function __construct($type, array $dsl = array(), array $context = array())
|
|
{
|
|
$this->type = $type;
|
|
$this->dsl = $dsl;
|
|
$this->context = $context;
|
|
}
|
|
}
|