Skip to content
This repository was archived by the owner on Sep 6, 2023. It is now read-only.

Commit 87365f2

Browse files
committed
Downgrade php to 7.2
1 parent 65968b5 commit 87365f2

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

module/ggrachdev.debugbar/classes/general/BitrixDebugger/Debugger/FilterDebugger.php

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,15 @@
1111
*/
1212
class FilterDebugger extends ConfigurationDebugger {
1313

14-
protected FiltratorContract $filtrator;
14+
/**
15+
* @var FiltratorContract
16+
*/
17+
protected $filtrator;
1518

1619
/**
1720
* @var bool Не нужно сбрасывать фильтр после каждой операции логирования?
1821
*/
19-
protected bool $isFreezedFilter = false;
22+
protected $isFreezedFilter = false;
2023

2124
public function getFiltrator(): FiltratorContract {
2225
return $this->filtrator;

module/ggrachdev.debugbar/classes/general/Filtrator/Filtrator.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,11 @@ class Filtrator implements FiltratorContract {
1313
'limit', 'first', 'last', 'keys'
1414
];
1515

16-
protected array $sequenceFilters;
16+
/**
17+
*
18+
* @var array
19+
*/
20+
protected $sequenceFilters;
1721

1822
public function addFilter(string $filterType, array $filterParams = []): void {
1923
if ($this->hasFilter($filterType)) {

0 commit comments

Comments
 (0)