Newer
Older
<?php
namespace App\Model;
use App\Model;
abstract class Fan extends Model
{
abstract public function getCurrentSpeed(): int;
abstract public function setSpeed($percentage);
abstract public function stopFan();
abstract public function toRow(): array;