-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(Storage): Delegate provider responsibility to a new storage model
- Loading branch information
1 parent
25fb503
commit cc49ce7
Showing
3 changed files
with
59 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the Mezcalito UX FileManager project. | ||
* | ||
* (c) Mezcalito <dev@mezcalito.fr> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Mezcalito\FileManagerBundle\Filesystem; | ||
|
||
use Mezcalito\FileManagerBundle\Provider\ProviderInterface; | ||
|
||
readonly class Storage implements StorageInterface | ||
{ | ||
public function __construct( | ||
private ProviderInterface $provider, | ||
) { | ||
} | ||
|
||
public function getProvider(): ProviderInterface | ||
{ | ||
return $this->provider; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the Mezcalito UX FileManager project. | ||
* | ||
* (c) Mezcalito <dev@mezcalito.fr> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Mezcalito\FileManagerBundle\Filesystem; | ||
|
||
use Mezcalito\FileManagerBundle\Provider\ProviderInterface; | ||
|
||
interface StorageInterface | ||
{ | ||
public function getProvider(): ProviderInterface; | ||
} |