Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version for release #268

Merged
merged 1 commit into from
Feb 4, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "microsoft/microsoft-graph",
"type": "library",
"description": "The Microsoft Graph SDK for PHP",
"homepage": "https://graph.microsoft.io/en-us/",
"homepage": "https://developer.microsoft.com/en-us/graph",
"license": "MIT",
"authors": [
{
Expand Down
6 changes: 3 additions & 3 deletions src/Core/GraphConstants.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
*
* @category Library
* @package Microsoft.Graph
* @copyright 2019 Microsoft Corporation
* @copyright 2020 Microsoft Corporation
* @license https://opensource.org/licenses/MIT MIT License
* @version GIT: 1.12.0
* @version GIT: 1.13.0
* @link https://graph.microsoft.io/
*/

Expand All @@ -24,7 +24,7 @@ final class GraphConstants
const REST_ENDPOINT = "https://graph.microsoft.com/";

// Define HTTP request constants
const SDK_VERSION = "1.12.0";
const SDK_VERSION = "1.13.0";

// Define error constants
const MAX_PAGE_SIZE = 999;
Expand Down
14 changes: 7 additions & 7 deletions src/Http/GraphResponse.php
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
<?php
<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved.
* Licensed under the MIT License. See License in the project root
* Copyright (c) Microsoft Corporation. All Rights Reserved.
* Licensed under the MIT License. See License in the project root
* for license information.
*
*
* HttpResponse File
* PHP version 7
*
* @category Library
* @package Microsoft.Graph
* @copyright 2016 Microsoft Corporation
* @copyright 2020 Microsoft Corporation
* @license https://opensource.org/licenses/MIT MIT License
* @version GIT: 0.1.0
* @version GIT: 1.13.0
* @link https://graph.microsoft.io/
*/

Expand All @@ -37,7 +37,7 @@ class GraphResponse
*/
private $_body;
/**
* The body of the response,
* The body of the response,
* decoded into an array
*
* @var array(string)
Expand Down