| Total Lines | 42 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 35 | interface Message |
||
|
|
|||
| 36 | { |
||
| 37 | /** |
||
| 38 | * notice |
||
| 39 | * |
||
| 40 | * @param string $message |
||
| 41 | * @return void |
||
| 42 | */ |
||
| 43 | public function notice($message); |
||
| 44 | |||
| 45 | /** |
||
| 46 | * info |
||
| 47 | * |
||
| 48 | * @param string $message |
||
| 49 | * @return void |
||
| 50 | */ |
||
| 51 | public function info($message); |
||
| 52 | |||
| 53 | /** |
||
| 54 | * success |
||
| 55 | * |
||
| 56 | * @param string $message |
||
| 57 | * @return void |
||
| 58 | */ |
||
| 59 | public function success($message); |
||
| 60 | |||
| 61 | /** |
||
| 62 | * warning |
||
| 63 | * |
||
| 64 | * @param string $message |
||
| 65 | * @return void |
||
| 66 | */ |
||
| 67 | public function warning($message); |
||
| 68 | |||
| 69 | /** |
||
| 70 | * error |
||
| 71 | * |
||
| 72 | * @param string $message |
||
| 73 | * @return void |
||
| 74 | */ |
||
| 75 | public function error($message); |
||
| 76 | } |
||
| 77 |
This check examines a number of code elements and verifies that they conform to the given naming conventions.
You can set conventions for local variables, abstract classes, utility classes, constant, properties, methods, parameters, interfaces, classes, exceptions and special methods.