Fix: Change controller properties from private to protected (base class constraint)
This commit is contained in:
@@ -19,10 +19,10 @@ use OCA\AnalyticsHub\Service\LLMService;
|
||||
*/
|
||||
class PageController extends \OCP\AppFramework\Controller {
|
||||
|
||||
private $appName;
|
||||
private $config;
|
||||
private $gaService;
|
||||
private $llmService;
|
||||
protected $appName;
|
||||
protected $config;
|
||||
protected $gaService;
|
||||
protected $llmService;
|
||||
|
||||
public function __construct(
|
||||
string $appName,
|
||||
|
||||
Reference in New Issue
Block a user