Automation/app/Traits/MyStorage/MyStorageFileTrait.php
2024-09-04 18:59:45 +09:00

14 lines
240 B
PHP

<?php
namespace App\Traits\MyStorage;
trait MyStorageFileTrait
{
use MyStorageTrait;
final protected function saveByMyStorage(string $savePath, $content): bool
{
return file_put_contents($savePath, $content);
}
}