Files
luos/workflow/engine/classes/ListUserDisplayFormatInterface.php
davidcallizaya 8d5308dff8 HOR-4075
Define Interface for List classes.
Implement a trait base for the lists.
Fix sort by current user at Review and Reassign lists.
2017-11-21 09:35:32 -04:00

25 lines
405 B
PHP

<?php
/**
* The list implements user name formated.
*
*/
interface ListUserDisplayFormatInterface
{
/**
* Get the $userDisplayFormat value.
*
* @return string
*/
public function getUserDisplayFormat();
/**
* Set the value of $userDisplayFormat.
*
* @param string $v new value
* @return void
*/
public function setUserDisplayFormat($v);
}