Skip to content

Commit 7fb3b77

Browse files
authored
Declare class properties for php 8.2 (#182)
1 parent 2b7937a commit 7fb3b77

3 files changed

Lines changed: 19 additions & 0 deletions

File tree

src/AclExtras.php

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,13 @@ class AclExtras
4242
*/
4343
public $Acl;
4444

45+
/**
46+
* Aco object
47+
*
48+
* @var string
49+
*/
50+
public $Aco;
51+
4552
/**
4653
* Contains arguments parsed from the command line.
4754
*

src/Adapter/IniAcl.php

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,13 @@ class IniAcl implements AclInterface
4343
*/
4444
protected $_defaultConfig = [];
4545

46+
/**
47+
* Active config for this class
48+
*
49+
* @var array
50+
*/
51+
private $options = [];
52+
4653
/**
4754
* Constructor
4855
*

src/Model/Table/PermissionsTable.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,11 @@ class PermissionsTable extends AclNodesTable
2626
private ArosTable $Aro;
2727
private AcosTable $Aco;
2828

29+
/**
30+
* @var int
31+
*/
32+
private $id;
33+
2934
/**
3035
* {@inheritDoc}
3136
*

0 commit comments

Comments
 (0)