14 lines
240 B
PHP
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);
|
|
}
|
|
}
|