From 55a02ab265ded7b3f004018b4b77b1d3d15472ef Mon Sep 17 00:00:00 2001 From: Sergei Miami Date: Wed, 7 Feb 2024 08:50:24 +0200 Subject: [PATCH] PHP 8.3 deprecated errors fixed (#320) --- .../lib/generator/sfDoctrineFormGenerator.class.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/lib/plugins/sfDoctrinePlugin/lib/generator/sfDoctrineFormGenerator.class.php b/lib/plugins/sfDoctrinePlugin/lib/generator/sfDoctrineFormGenerator.class.php index f060e2739..dfa2c8dd6 100644 --- a/lib/plugins/sfDoctrinePlugin/lib/generator/sfDoctrineFormGenerator.class.php +++ b/lib/plugins/sfDoctrinePlugin/lib/generator/sfDoctrineFormGenerator.class.php @@ -19,6 +19,16 @@ */ class sfDoctrineFormGenerator extends sfGenerator { + /** + * @var Doctrine_Table + */ + public $table; + + /** + * @var string + */ + public $modelName; + /** * Array of all the loaded models. *