mirror of
https://github.com/verdigado/organization_folders.git
synced 2024-11-22 20:50:26 +01:00
15 lines
250 B
PHP
15 lines
250 B
PHP
|
<?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
|
||
|
}
|