123456789101112131415161718192021222324252627282930313233 |
- <?php
- declare(strict_types=1);
- namespace OCP\AppFramework\Services;
- abstract class InitialStateProvider implements \JsonSerializable {
-
- abstract public function getKey(): string;
-
- abstract public function getData();
-
-
- final public function jsonSerialize() {
- return $this->getData();
- }
- }
|