Skip to content
Snippets Groups Projects
Sensor.php 269 B
Newer Older
<?php

namespace App;

interface Sensor
{
    const STATUS_UNKNOWN = -1;
    const STATUS_OK = 0;
    const STATUS_WARNING = 10;
    const STATUS_ERROR = 20;

    public function __construct(Server $server);
    public function status();
    public function report();
}