Skip to content

Commit

Permalink
fix: add missing property declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
janbritz authored and MHajoha committed Dec 5, 2024
1 parent 6073eda commit c03786f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion edit_questionpy_form.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
use core\di;
use core_question\local\bank\question_edit_contexts;
use qtype_questionpy\api\api;
use qtype_questionpy\api\qpy_http_client;
use qtype_questionpy\form\context\root_render_context;
use qtype_questionpy\localizer;
use qtype_questionpy\package\package;
Expand All @@ -42,6 +41,10 @@
class qtype_questionpy_edit_form extends question_edit_form {
/** @var array current form data set in {@see definition_inner} and added to the question in {@see set_data}. */
private array $currentdata = [];
/** @var package_file_service */
private package_file_service $packagefileservice;
/** @var api */
private api $api;

/**
* Initialize the form.
Expand Down

0 comments on commit c03786f

Please sign in to comment.