Files
crm.clientright.ru/modules/Workflow2/lib/Workflow/VTEntityMap.php

23 lines
422 B
PHP
Raw Normal View History

<?php
/**
* Created by JetBrains PhpStorm.
* User: Stefan Warnat <support@stefanwarnat.de>
* Date: 09.04.14 13:24
* You must not use this file without permission.
*/
namespace Workflow;
class VTEntityMap extends \ArrayIterator
{
public function get($key) {
$returns = array();
foreach($this as $value) {
$returns[] = $value->get($key);
}
return $returns;
}
}
?>