1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- declare(strict_types=1);
- namespace OCA\WorkflowEngine\Settings;
- use OCP\WorkflowEngine\IManager;
- class Admin extends ASettings {
- public function getScope(): int {
- return IManager::SCOPE_ADMIN;
- }
- }
|