mirror of
https://github.com/verdigado/organization_folders.git
synced 2024-11-22 12:40:28 +01:00
15 lines
No EOL
250 B
PHP
15 lines
No EOL
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
|
|
} |