Automation/app/Libraries/MyStorage/MyStorageLibrary.php
2024-09-05 17:22:34 +09:00

16 lines
267 B
PHP

<?php
namespace App\Libraries\MyStorage;
use App\Libraries\CommonLibrary;
abstract class MyStorageLibrary extends CommonLibrary
{
protected function __construct()
{
parent::__construct();
}
abstract public function save($content): bool;
}