mirror of
https://github.com/code-rhapsodie/ezmigrationbundle2.git
synced 2026-03-24 14:52:13 +01:00
12 lines
253 B
PHP
12 lines
253 B
PHP
<?php
|
|
|
|
namespace Kaliop\eZMigrationBundle\API\Collection;
|
|
|
|
/**
|
|
* @todo add phpdoc to suggest typehinting
|
|
*/
|
|
class TrashedItemCollection extends AbstractCollection
|
|
{
|
|
protected $allowedClass = 'eZ\Publish\API\Repository\Values\Content\TrashItem';
|
|
}
|