Skip to content

Commit

Permalink
PHP 8.2 Creation of dynamic property warnings #781 (#789)
Browse files Browse the repository at this point in the history
  • Loading branch information
sammarshallou authored Feb 23, 2024
1 parent 0cda020 commit 4dd8ba1
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
5 changes: 5 additions & 0 deletions classes/admin/setting_button.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class setting_button extends admin_setting_heading {
/** @var string Button label */
protected $label;
/** @var string Button href */
protected $href;

/**
* A button element
*
Expand Down
21 changes: 21 additions & 0 deletions classes/auth.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,27 @@ class auth extends \auth_plugin_base {
*/
private $defaultidp;

/**
* @var string SP name
*/
public $spname;

/**
* @var string Contents of certificate .pem file
*/
public $certpem;

/**
* @var string Contents of certificate .crt file
*/
public $certcrt;

/**
* @var idp_data[] List of metadata for IdPs
*/
public $metadatalist;


/**
* @var array $defaults The config defaults
*/
Expand Down

0 comments on commit 4dd8ba1

Please sign in to comment.