1<?php
2
3namespace FINDOLOGIC\Export\Data;
4
5use FINDOLOGIC\Export\Helpers\UsergroupAwareMultiValue;
6
7class AllOrdernumbers extends UsergroupAwareMultiValue
8{
9    public function __construct()
10    {
11        parent::__construct('allOrdernumbers', 'ordernumbers', '|');
12    }
13}
14