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