Skip to content

Commit

Permalink
Declare class properties for php 8.2 (#182)
Browse files Browse the repository at this point in the history
  • Loading branch information
nook24 authored Sep 1, 2023
1 parent 2b7937a commit 7fb3b77
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/AclExtras.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,13 @@ class AclExtras
*/
public $Acl;

/**
* Aco object
*
* @var string
*/
public $Aco;

/**
* Contains arguments parsed from the command line.
*
Expand Down
7 changes: 7 additions & 0 deletions src/Adapter/IniAcl.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,13 @@ class IniAcl implements AclInterface
*/
protected $_defaultConfig = [];

/**
* Active config for this class
*
* @var array
*/
private $options = [];

/**
* Constructor
*
Expand Down
5 changes: 5 additions & 0 deletions src/Model/Table/PermissionsTable.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ class PermissionsTable extends AclNodesTable
private ArosTable $Aro;
private AcosTable $Aco;

/**
* @var int
*/
private $id;

/**
* {@inheritDoc}
*
Expand Down

0 comments on commit 7fb3b77

Please sign in to comment.