| 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 |
|