mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-21 19:01:37 +00:00
12 lines
299 B
PHP
12 lines
299 B
PHP
<?php
|
|
|
|
namespace App\StorageProviders;
|
|
|
|
use App\Models\StorageProvider;
|
|
use App\StorageProviders\StorageProvider as StorageProviderContract;
|
|
|
|
abstract class AbstractStorageProvider implements StorageProviderContract
|
|
{
|
|
public function __construct(protected StorageProvider $storageProvider) {}
|
|
}
|