🐛 Fix fatal error in derived REST classes

This commit is contained in:
Philipp Stracker 2024-11-22 21:30:21 +01:00
parent d85d802169
commit 8e19b6b804
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -27,7 +27,7 @@ class CommonRestEndpoint extends RestEndpoint {
* *
* @var string * @var string
*/ */
protected string $rest_base = 'common'; protected $rest_base = 'common';
/** /**
* The settings instance. * The settings instance.

View file

@ -23,7 +23,7 @@ class LoginLinkRestEndpoint extends RestEndpoint {
* *
* @var string * @var string
*/ */
protected string $rest_base = 'login_link'; protected $rest_base = 'login_link';
/** /**
* Link generator list, with environment name as array key. * Link generator list, with environment name as array key.