Skip to content

Commit 0fad838

Browse files
authored
Merge pull request #901 from catalyst/TOTARA_19-php83
PHP 8.2 Creation of dynamic property warnings #781 (#789)
2 parents bede401 + a1c0902 commit 0fad838

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

classes/admin/setting_button.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,11 @@
3838
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
3939
*/
4040
class setting_button extends admin_setting_heading {
41+
/** @var string Button label */
42+
protected $label;
43+
/** @var string Button href */
44+
protected $href;
45+
4146
/**
4247
* A button element
4348
*

classes/auth.php

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,27 @@ class auth extends \auth_plugin_base {
6363
*/
6464
private $defaultidp;
6565

66+
/**
67+
* @var string SP name
68+
*/
69+
public $spname;
70+
71+
/**
72+
* @var string Contents of certificate .pem file
73+
*/
74+
public $certpem;
75+
76+
/**
77+
* @var string Contents of certificate .crt file
78+
*/
79+
public $certcrt;
80+
81+
/**
82+
* @var idp_data[] List of metadata for IdPs
83+
*/
84+
public $metadatalist;
85+
86+
6687
/**
6788
* @var array $defaults The config defaults
6889
*/

0 commit comments

Comments
 (0)