Skip to content

Commit 2a99c40

Browse files
authored
Merge pull request #68 from Recras/doctrine-build-php82
Fix some dynamic properties used for the "doctrine build all classes" task
2 parents abffa3f + bd2b077 commit 2a99c40

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

lib/plugins/sfDoctrinePlugin/lib/generator/sfDoctrineFormGenerator.class.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@
2222
*/
2323
class sfDoctrineFormGenerator extends sfGenerator
2424
{
25+
protected string $modelName;
26+
protected array $params = [];
27+
protected Doctrine_Table $table;
28+
2529
/**
2630
* Array of all the loaded models
2731
*

lib/task/sfBaseTask.class.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ abstract class sfBaseTask extends sfCommandApplicationTask
2222
$configuration = null,
2323
$pluginManager = null,
2424
$statusStartTime = null;
25+
private ?sfFilesystem $filesystem;
2526

2627
/**
2728
* @see sfTask

0 commit comments

Comments
 (0)