diff --git a/Models/Ticket.php b/Models/Ticket.php index 885c3f3..12fe49c 100644 --- a/Models/Ticket.php +++ b/Models/Ticket.php @@ -27,17 +27,34 @@ use Modules\Tasks\Models\TaskType; */ class Ticket { - - private $id = 0; + /** + * ID. + * + * @var int + * @since 1.0.0 + */ + protected int $id = 0; private $task = null; + /** + * Constructor. + * + * @since 1.0.0 + */ public function __construct() { $this->task = new Task(); $this->task->setType(TaskType::HIDDEN); } + /** + * Get id. + * + * @return int Model id + * + * @since 1.0.0 + */ public function getId() : int { return $this->id; diff --git a/Theme/Backend/Lang/Navigation.en.lang.php b/Theme/Backend/Lang/Navigation.en.lang.php index fec74a3..75ab88a 100644 --- a/Theme/Backend/Lang/Navigation.en.lang.php +++ b/Theme/Backend/Lang/Navigation.en.lang.php @@ -1,4 +1,4 @@ - [ 'Support' => 'Support', 'Ticket' => 'Ticket', diff --git a/Theme/Backend/Lang/en.lang.php b/Theme/Backend/Lang/en.lang.php index f30105a..ba7c054 100644 --- a/Theme/Backend/Lang/en.lang.php +++ b/Theme/Backend/Lang/en.lang.php @@ -1,4 +1,4 @@ - [ 'Account' => 'Account', 'All' => 'All', diff --git a/Theme/Backend/support-list.tpl.php b/Theme/Backend/support-list.tpl.php index 011e941..3dbdd74 100644 --- a/Theme/Backend/support-list.tpl.php +++ b/Theme/Backend/support-list.tpl.php @@ -1,4 +1,4 @@ -