Skip to content

Commit 84d20d7

Browse files
committed
release version 2.1.19
1 parent b7d5e62 commit 84d20d7

File tree

8 files changed

+17
-19
lines changed

8 files changed

+17
-19
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
Yii Framework 2 debug extension Change Log
22
==========================================
33

4-
2.1.19 under development
5-
------------------------
4+
2.1.19 April 05, 2022
5+
---------------------
66

7-
- Enh #469: Add option to change default LogTarget (laxity7)
87
- Bug #466: Remove opis\closure dependency for PHP 8.1 compatibility. Closures in logs still working (sartor)
98
- Bug #470: Fix PHP 8.1 warnings about implicit conversion from float to int loses precision (mishamosher)
9+
- Enh #469: Add option to change default LogTarget (laxity7)
1010

1111

1212
2.1.18 August 09, 2021

src/Panel.php

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,10 @@
1818
* Panel is a base class for debugger panel classes. It defines how data should be collected,
1919
* what should be displayed at debug toolbar and on debugger details view.
2020
*
21-
* @property-read string $detail Content that is displayed in debugger detail view. This property is
22-
* read-only.
23-
* @property-read string $name Name of the panel. This property is read-only.
24-
* @property-read string $summary Content that is displayed at debug toolbar. This property is read-only.
25-
* @property-read string $url URL pointing to panel detail view. This property is read-only.
21+
* @property-read string $detail Content that is displayed in debugger detail view.
22+
* @property-read string $name Name of the panel.
23+
* @property-read string $summary Content that is displayed at debug toolbar.
24+
* @property-read string $url URL pointing to panel detail view.
2625
*
2726
* @author Qiang Xue <qiang.xue@gmail.com>
2827
* @since 2.0

src/models/timeline/DataProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
/**
1414
* DataProvider implements a data provider based on a data array.
1515
*
16-
* @property-read array $rulers This property is read-only.
16+
* @property-read array $rulers
1717
*
1818
* @author Dmitriy Bashkarev <dmitriy@bashkarev.com>
1919
* @since 2.0.8

src/panels/ConfigPanel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
/**
1414
* Debugger panel that collects and displays application configuration and environment.
1515
*
16-
* @property-read array $extensions This property is read-only.
17-
* @property-read array $phpInfo This property is read-only.
16+
* @property-read array $extensions
17+
* @property-read array $phpInfo
1818
*
1919
* @author Qiang Xue <qiang.xue@gmail.com>
2020
* @since 2.0

src/panels/DbPanel.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,8 @@
1717
/**
1818
* Debugger panel that collects and displays database queries performed.
1919
*
20-
* @property-read array $profileLogs This property is read-only.
21-
* @property-read string $summaryName Short name of the panel, which will be use in summary. This property is
22-
* read-only.
20+
* @property-read array $profileLogs
21+
* @property-read string $summaryName Short name of the panel, which will be use in summary.
2322
*
2423
* @author Qiang Xue <qiang.xue@gmail.com>
2524
* @since 2.0

src/panels/MailPanel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
/**
1818
* Debugger panel that collects and displays the generated emails.
1919
*
20-
* @property-read array $messagesFileName This property is read-only.
20+
* @property-read array $messagesFileName
2121
*
2222
* @author Mark Jebri <mark.github@yandex.ru>
2323
* @since 2.0

src/panels/TimelinePanel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
* Debugger panel that collects and displays timeline data.
1818
*
1919
* @property array $colors
20-
* @property-read float $duration This property is read-only.
21-
* @property-read float $start This property is read-only.
20+
* @property-read float $duration
21+
* @property-read float $start
2222
* @property array $svgOptions
2323
*
2424
* @author Dmitriy Bashkarev <dmitriy@bashkarev.com>

src/panels/UserPanel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
/**
2727
* Debugger panel that collects and displays user data.
2828
*
29-
* @property-read DataProviderInterface $userDataProvider This property is read-only.
30-
* @property-read Model|UserSearchInterface $usersFilterModel This property is read-only.
29+
* @property-read DataProviderInterface $userDataProvider
30+
* @property-read Model|UserSearchInterface $usersFilterModel
3131
*
3232
* @author Daniel Gomez Pan <pana_1990@hotmail.com>
3333
* @since 2.0.8

0 commit comments

Comments
 (0)