mirror of
https://github.com/ConnectedHumber/Air-Quality-Web
synced 2024-11-22 06:23:01 +00:00
8 lines
100 B
PHP
8 lines
100 B
PHP
|
<?php
|
||
|
|
||
|
namespace AirQuality\Actions;
|
||
|
|
||
|
interface IAction {
|
||
|
public function handle() : boolean;
|
||
|
}
|