mirror of
https://github.com/jbcr/ezmigrationbundle.git
synced 2026-03-25 17:32:05 +01:00
12 lines
243 B
PHP
12 lines
243 B
PHP
<?php
|
|
|
|
namespace Kaliop\eZMigrationBundle\API\Collection;
|
|
|
|
/**
|
|
* @todo add phpdoc to suggest typehinting
|
|
*/
|
|
class LocationCollection extends \ArrayObject
|
|
{
|
|
protected $allowedClass = 'eZ\Publish\API\Repository\Values\Content\Location';
|
|
}
|