diff options
Diffstat (limited to 'src/Core/OwnableInterface.php')
-rw-r--r-- | src/Core/OwnableInterface.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/Core/OwnableInterface.php b/src/Core/OwnableInterface.php new file mode 100644 index 0000000..c54281b --- /dev/null +++ b/src/Core/OwnableInterface.php @@ -0,0 +1,12 @@ +<?php +namespace IP1\RESTClient\Core; + +interface OwnableInterface +{ + + /** + * Returns ID of account owning the implemented object. + * @return ID of account owning the implemented object. + */ + public function getOwnerID(): string; +} |