mirror of
https://github.com/JBDevLabs/ezmigrationbundle.git
synced 2026-03-24 17:02:18 +01:00
12 lines
254 B
PHP
12 lines
254 B
PHP
<?php
|
|
|
|
namespace Kaliop\eZMigrationBundle\API\Collection;
|
|
|
|
/**
|
|
* @todo add phpdoc to suggest typehinting
|
|
*/
|
|
class MigrationStepsCollection extends AbstractCollection
|
|
{
|
|
protected $allowedClass = 'Kaliop\eZMigrationBundle\API\Value\MigrationStep';
|
|
}
|