PluginProbe
Remote Website Management by Watchful / trunk
Remote Website Management by Watchful vtrunk
v2.0.17 v2.0.16 v2.0.15 v2.0.14 v2.0.13 v2.0.12 v2.0.11 trunk v1.2.11 v1.2.12 v1.2.13 v1.2.14 v1.2.17 v1.2.19 v1.2.20 v1.2.9 v1.3.0 v1.3.1 v1.3.2 v1.4.1 v1.4.10 v1.4.11 v1.4.12 v1.4.2 v1.4.3 All 72 releases
watchful / lib / App / Alert.php

Alert.php in Remote Website Management by Watchful trunk, at lib/App/Alert.php

25 lines 429 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Watchful\App;
4
5 interface Alert
6 {
7 const LEVEL_INFO = 1;
8 const LEVEL_ERROR = 2;
9
10 /** @return string */
11 public function getMessage();
12
13 /** @return int */
14 public function getLevel();
15
16 /** @return string|null */
17 public function getParameter1();
18
19 /** @return string|null */
20 public function getParameter2();
21
22 /** @return string|null */
23 public function getParameter3();
24 }
25