mirror of
https://github.com/verdigado/groupfolder_tags.git
synced 2024-11-23 21:40:27 +01:00
Add base command for groupfolder validation
This commit is contained in:
parent
3156833ff0
commit
ee525d8b7c
1 changed files with 20 additions and 0 deletions
20
lib/Command/TagCommand.php
Normal file
20
lib/Command/TagCommand.php
Normal file
|
@ -0,0 +1,20 @@
|
|||
<?php
|
||||
|
||||
namespace OCA\GroupfolderTags\Command;
|
||||
|
||||
use OCA\GroupFolders\Command\FolderCommand;
|
||||
use OCA\GroupFolders\Folder\FolderManager;
|
||||
use OCA\GroupFolders\Mount\MountProvider;
|
||||
use OCA\GroupfolderTags\Service\TagService;
|
||||
use OCP\Files\IRootFolder;
|
||||
|
||||
abstract class TagCommand extends FolderCommand {
|
||||
public function __construct(
|
||||
protected readonly TagService $service,
|
||||
FolderManager $folderManager,
|
||||
IRootFolder $rootFolder,
|
||||
MountProvider $mountProvider
|
||||
) {
|
||||
parent::__construct($folderManager, $rootFolder, $mountProvider);
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue