0
0
Fork 0
mirror of https://github.com/verdigado/organization_folders.git synced 2024-11-22 20:50:26 +01:00
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
}