Skip to content

Commit

Permalink
improv: PHP 8.2: deprecated dynamic property - declared property
Browse files Browse the repository at this point in the history
  • Loading branch information
marcghaly committed Dec 25, 2023
1 parent 9e6100f commit 5c7df87
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions classes/step.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ class step extends persistent {
/** Characters to strip out when converting a name. Taken from PARAM_ALPHANUMEXT. */
const NOT_ALPHANUMEXT = '/[^a-zA-Z0-9_-]+/';

/** @var dataflow */
private $dataflow;

/** @var array */
private $dependson = [];

Expand All @@ -57,6 +60,9 @@ class step extends persistent {
/** @var array array for lazy loading step dependants */
private $dependents = null;

/** @var base_step */
private $steptype;

/**
* Return the definition of the properties of this model.
*
Expand Down

0 comments on commit 5c7df87

Please sign in to comment.