| Total Complexity | 3 | 
| Total Lines | 38 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 20 | class Standard  | 
            ||
| 21 | extends \Aimeos\Controller\Common\Common\Import\Xml\Processor\Base  | 
            ||
| 22 | implements \Aimeos\Controller\Common\Common\Import\Xml\Processor\Iface  | 
            ||
| 23 | { | 
            ||
| 24 | use \Aimeos\Controller\Common\Common\Import\Xml\Traits;  | 
            ||
| 25 | |||
| 26 | |||
| 27 | /** controller/common/common/import/xml/processor/lists/name  | 
            ||
| 28 | * Name of the lists processor implementation  | 
            ||
| 29 | *  | 
            ||
| 30 | * Use "Myname" if your class is named "\Aimeos\Controller\Common\Common\Import\Xml\Processor\Lists\Myname".  | 
            ||
| 31 | * The name is case-sensitive and you should avoid camel case names like "MyName".  | 
            ||
| 32 | *  | 
            ||
| 33 | * @param string Last part of the processor class name  | 
            ||
| 34 | * @since 2019.04  | 
            ||
| 35 | * @category Developer  | 
            ||
| 36 | */  | 
            ||
| 37 | |||
| 38 | |||
| 39 | /**  | 
            ||
| 40 | * Updates the given item using the data from the DOM node  | 
            ||
| 41 | *  | 
            ||
| 42 | * @param \Aimeos\MShop\Common\Item\Iface $item Item which should be updated  | 
            ||
| 43 | * @param \DOMNode $node XML document node containing a list of nodes to process  | 
            ||
| 44 | * @return \Aimeos\MShop\Common\Item\Iface Updated item  | 
            ||
| 45 | */  | 
            ||
| 46 | public function process( \Aimeos\MShop\Common\Item\Iface $item, \DOMNode $node )  | 
            ||
| 60 |