Skip to content

Commit

Permalink
Merge pull request #4 from artjom/spelling-mistakes
Browse files Browse the repository at this point in the history
corrected spelling
  • Loading branch information
daveismynamecom authored Sep 1, 2019
2 parents 7585d72 + b9e5100 commit 21be3b0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/MsGraph.php
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ protected function guzzle($type, $request, $data = [], $id)
'body' => json_encode($data),
]);

if ($resonse == null) {
if ($response == null) {
return null;
}

Expand Down
6 changes: 3 additions & 3 deletions src/MsGraphAdmin.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public function emails()
* __call catches all requests when no founf method is requested
* @param $function - the verb to execute
* @param $args - array of arguments
* @return gizzle request
* @return guzzle request
*/
public function __call($function, $args)
{
Expand Down Expand Up @@ -190,7 +190,7 @@ protected function guzzle($type, $request, $data = [])
'body' => json_encode($data),
]);

if ($resonse == null) {
if ($response == null) {
return null;
}

Expand All @@ -209,7 +209,7 @@ protected static function dopost($url, $params)
$client = new Client;
$response = $client->post($url, ['form_params' => $params]);

if ($resonse == null) {
if ($response == null) {
return null;
}

Expand Down

0 comments on commit 21be3b0

Please sign in to comment.