Skip to content

Commit 1e751b4

Browse files
committed
Updated copyright, bumped version.
1 parent 36b6e6f commit 1e751b4

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/GraphODataTemplateWriter/.config/TemplateWriterSettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"AvailableLanguages": [ "Android", "Java", "ObjC", "CSharp", "PHP", "Python", "TypeScript", "GraphEndpointList" ],
3-
"TargetLanguage": "CSharp",
3+
"TargetLanguage": "PHP",
44
"Plugins": [],
55
"PrimaryNamespaceName": "com",
66
"NamespacePrefix": "com",

src/GraphODataTemplateWriter/CodeHelpers/PHP/CodeWriterPHP.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ public IEnumerable<string> GetDocBlock(string fileName)
4747
"*" + this.NewLineCharacter +
4848
"* @category Library" + this.NewLineCharacter +
4949
"* @package Microsoft.Graph" + this.NewLineCharacter +
50-
"* @copyright 2016 Microsoft Corporation" + this.NewLineCharacter +
50+
"* @copyright © Microsoft Corporation. All rights reserved." + this.NewLineCharacter +
5151
"* @license https://opensource.org/licenses/MIT MIT License" + this.NewLineCharacter +
52-
"* @version GIT: 0.1.0" + this.NewLineCharacter +
52+
"* @version GIT: 1.4.0" + this.NewLineCharacter +
5353
"* @link https://graph.microsoft.io/";
5454
}
5555

@@ -60,9 +60,9 @@ public String GetClassBlock(string fileName, string category)
6060
"*" + this.NewLineCharacter +
6161
"* @category " + category + this.NewLineCharacter +
6262
"* @package Microsoft.Graph" + this.NewLineCharacter +
63-
"* @copyright 2016 Microsoft Corporation" + this.NewLineCharacter +
63+
"* @copyright © Microsoft Corporation. All rights reserved." + this.NewLineCharacter +
6464
"* @license https://opensource.org/licenses/MIT MIT License" + this.NewLineCharacter +
65-
"* @version Release: 0.1.0" + this.NewLineCharacter +
65+
"* @version Release: 1.4.0" + this.NewLineCharacter +
6666
"* @link https://graph.microsoft.io/" + this.NewLineCharacter +
6767
"*/";
6868
}

0 commit comments

Comments
 (0)