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