mirror of
https://github.com/JBDevLabs/ezmigrationbundle.git
synced 2026-03-26 09:52:18 +01:00
12 lines
239 B
PHP
12 lines
239 B
PHP
<?php
|
|
|
|
namespace Kaliop\eZMigrationBundle\API\Collection;
|
|
|
|
/**
|
|
* @todo add phpdoc to suggest typehinting
|
|
*/
|
|
class MigrationCollection extends \ArrayObject
|
|
{
|
|
protected $allowedClass = 'Kaliop\eZMigrationBundle\API\Value\Migration';
|
|
}
|