12345678910111213141516171819202122232425262728 |
- <?php
- declare(strict_types=1);
- namespace OC\AppFramework\Bootstrap;
- abstract class ARegistration {
-
- private $appId;
- public function __construct(string $appId) {
- $this->appId = $appId;
- }
-
- public function getAppId(): string {
- return $this->appId;
- }
- }
|