1: <?php
2: namespace Azalea\Selenium\EHR\UI\Messaging\Folders;
3:
4: use \Azalea\Selenium\EHR\UI\Messaging\MessagingFolder as MessagingFolder;
5:
6: class MessagingInbox extends MessagingFolder
7: {
8: /** @var string $hash The hash fragment corresponding to this view, if any. */
9: protected static $hash = "/messages/inbox";
10:
11: protected static $selector = "#messages-tab";
12: protected static $title = "";
13: protected static $title_selector = "";
14:
15: public function verify($args = array())
16: {
17: $this->byId("messages_table");
18: return true;
19: }
20: }