Skip to content

Commit 43370bc

Browse files
author
Caitlin Bales (MSFT)
committed
Add documentation of properties
1 parent 0351fad commit 43370bc

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

Templates/PHP/Model/ComplexType.php.tt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ namespace Microsoft\Graph\Model;
1212
<#=writer.GetClassBlock(complex.Name.ToCheckedCase().ToString(), "Model")#>
1313
class <#=complex.Name.ToUpperFirstChar()#>
1414
{
15+
/**
16+
* The array of properties available to the model
17+
* @var array(string => string)
18+
*/
1519
private $_propDict;
1620
/**
1721
* <#=complex.Name.ToCheckedCase()#> constructor

Templates/PHP/Model/EntityType.php.tt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ namespace Microsoft\Graph\Model;
1515
<#=writer.GetClassBlock(entity.Name.ToCheckedCase().ToString(), "Model")#>
1616
class <#=entity.Name.ToCheckedCase()#>
1717
{
18+
/**
19+
* The array of properties available to the model
20+
* @var array(string => string)
21+
*/
1822
private $_propDict;
1923
/**
2024
* Construct a new <#=entity.Name.ToUpperFirstChar()#>

0 commit comments

Comments
 (0)