MDL-79511 lib: Allow dynamic properties for ADOFieldObject class

This commit is contained in:
Meirza
2023-09-28 10:22:31 +07:00
committed by meirzamoodle
parent 595a112ad1
commit cef7d8c2ed
2 changed files with 3 additions and 1 deletions
+1
View File
@@ -3744,6 +3744,7 @@ http://www.stanford.edu/dept/itss/docs/oracle/10g/server.101/b10759/statements_1
/**
* Internal placeholder for record objects. Used by ADORecordSet->FetchObj().
*/
#[AllowDynamicProperties]
class ADOFetchObj {
};
+2 -1
View File
@@ -35,4 +35,5 @@ Notes:
4. https://github.com/ADOdb/ADOdb/commit/5766f6b17aac1da80302840416e24ac9a341742c
5. https://github.com/ADOdb/ADOdb/commit/f52cf8a68cb6e0b702c8e7a6a8fa5da3e59ad13a
6. https://github.com/ADOdb/ADOdb/commit/f7b91c2a45e2c89868894f73a65a096fbc4c1a0f
Some of the commits added properties and removed some codes to avoid adding new properties.
Some of the commits added properties and removed some codes to avoid adding new properties.
* 2023-09-28 Added #[AllowDynamicProperties] above the ADOFetchObj class.