| Total Complexity | 1 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 22 | class PmHelper |
||
| 23 | { |
||
| 24 | /** @var int display_mode key is as follows */ |
||
| 25 | public const DISPLAY_ALL_AT_ONCE = 0; |
||
| 26 | public const DISPLAY_ONE_AT_TIME = 1; |
||
| 27 | public const DISPLAY_AS_CONVERSATION = 2; |
||
| 28 | |||
| 29 | /**s |
||
| 30 | * Returns the current PM display mode |
||
| 31 | * |
||
| 32 | * @return int |
||
| 33 | */ |
||
| 34 | public static function getDisplayMode() |
||
| 39 |