vito/app/SSH/Storage/AbstractStorage.php
Saeed Vaziry e031bafba5
upgrade to Laravel 11 and schema squash (#245)
* upgrade to Laravel 11 and schema squash

* code style and npm audit fix

* fix #209
2024-06-24 23:03:02 +02:00

12 lines
250 B
PHP

<?php
namespace App\SSH\Storage;
use App\Models\Server;
use App\Models\StorageProvider;
abstract class AbstractStorage implements Storage
{
public function __construct(protected Server $server, protected StorageProvider $storageProvider) {}
}