Skip to content

Commit 3891fa6

Browse files
WebGregGitRom1-Bstonebuzz
authored
Issue #253 - Fixes deprecated dynamic property in baseclass.class.php (#272)
* Fix deprecated dynamic property * Apply suggestions from code review Co-authored-by: Stanislas <skita@teclib.com> --------- Co-authored-by: Romain B. <8530352+Rom1-B@users.noreply.github.com> Co-authored-by: Stanislas <skita@teclib.com>
1 parent 0fe7f7b commit 3891fa6

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

inc/baseclass.class.php

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,13 @@ class PluginMreportingBaseclass
3838
protected $where_entities;
3939
protected $where_entities_array;
4040
protected $where_entities_level;
41+
protected $period_sort;
42+
protected $period_sort_php;
43+
protected $period_datetime;
44+
protected $period_label;
45+
protected $period_interval;
46+
protected $sql_list_date;
47+
protected $status;
4148

4249
public function __construct($config = [])
4350
{
@@ -69,7 +76,8 @@ public function __construct($config = [])
6976
],
7077
],
7178
];
72-
$this->status = [CommonITILObject::INCOMING,
79+
$this->status = [
80+
CommonITILObject::INCOMING,
7381
CommonITILObject::ASSIGNED,
7482
CommonITILObject::PLANNED,
7583
CommonITILObject::WAITING,

0 commit comments

Comments
 (0)