mirror of
https://github.com/ConnectedHumber/Air-Quality-Web
synced 2024-10-31 03:23:01 +00:00
7 lines
97 B
PHP
7 lines
97 B
PHP
<?php
|
|
|
|
namespace AirQuality\Actions;
|
|
|
|
interface IAction {
|
|
public function handle() : bool;
|
|
}
|