Skip to content

Commit edd2e2a

Browse files
committed
Declare previously dynamic variables
Avoid warning about dynamic variables in php8.2.
1 parent 5385869 commit edd2e2a

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

lib/generator/sfPropelFormGenerator.class.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@ class sfPropelFormGenerator extends sfGenerator
2323
protected
2424
$dbMap = null;
2525

26+
public
27+
$params = null;
28+
29+
public
30+
$table = null;
31+
2632
/**
2733
* Initializes the current sfGenerator instance.
2834
*

lib/task/sfPropelGenerateModuleTask.class.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
*/
2121
class sfPropelGenerateModuleTask extends sfPropelBaseTask
2222
{
23+
protected $constants;
24+
2325
/**
2426
* @see sfTask
2527
*/

0 commit comments

Comments
 (0)