23 lines
422 B
PHP
23 lines
422 B
PHP
|
|
<?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;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
?>
|