organization_folders/lib/OrganisationProvider/OrganisationProvider.php

15 lines
250 B
PHP
Raw Normal View History

<?php
declare(strict_types=1);
namespace OCA\OrganizationFolders\OrganisationProvider;
abstract class OrganisationProvider {
protected $id;
public function getId() {
return $this->id;
}
// TODO: functions to access organisation structure
}