forked from magento/magento2-phpstorm-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMagento Entity Data Mapper.php.ft
52 lines (45 loc) · 1.16 KB
/
Magento Entity Data Mapper.php.ft
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php
#parse("PHP File Header.php")
namespace ${NAMESPACE};
#set($uses = ${USES})
#foreach ($use in $uses.split(","))
use $use;
#end
/**
* Converts a collection of ${ENTITY_NAME} entities to an array of data transfer objects.
*/
class ${CLASS_NAME}
{
/**
* @var ${DTO_FACTORY}
*/
private $entityDtoFactory;
/**
* @param ${DTO_FACTORY} $entityDtoFactory
*/
public function __construct(
${DTO_FACTORY} $entityDtoFactory
) {
$this->entityDtoFactory = $entityDtoFactory;
}
/**
* Map magento models to DTO array.
*
* @param ${ABSTRACT_COLLECTION} $collection
*
* @return array|${DTO_TYPE}[]
*/
public function map(${ABSTRACT_COLLECTION} $collection): array
{
$results = [];
/** @var ${MAGENTO_MODEL_TYPE} $item */
foreach ($collection->getItems() as $item) {
/** @var ${DTO_TYPE}|${DATA_OBJECT} $entityDto */
$entityDto = $this->entityDtoFactory->create();
$entityDto->addData($item->getData());
#set($brackets = "[]")
$results$brackets = $entityDto;
}
return $results;
}
}