16 lines
267 B
PHP
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;
|
|
}
|