1
0
Fork 0
mirror of synced 2024-09-21 03:52:23 +12:00
appwrite/src/Appwrite/Usage/Calculator.php
2022-09-25 05:41:13 +00:00

15 lines
235 B
PHP

<?php
namespace Appwrite\Usage;
abstract class Calculator
{
protected string $region;
public function __construct(string $region)
{
$this->region = $region;
}
abstract public function collect(): void;
}