mirror of
https://github.com/code-rhapsodie/ezmigrationbundle2.git
synced 2026-03-24 06:42:19 +01:00
13 lines
300 B
PHP
13 lines
300 B
PHP
<?php
|
|
|
|
namespace Kaliop\eZMigrationBundle\API\Collection;
|
|
|
|
/**
|
|
* @todo add phpdoc to suggest typehinting
|
|
* @todo sort by key upon creation
|
|
*/
|
|
class MigrationDefinitionCollection extends AbstractCollection
|
|
{
|
|
protected $allowedClass = 'Kaliop\eZMigrationBundle\API\Value\MigrationDefinition';
|
|
}
|