Skip to content

Commit

Permalink
Merge pull request #566 from Minimax42/master
Browse files Browse the repository at this point in the history
Corrected path to autoload.php
  • Loading branch information
ianbarber committed May 28, 2015
2 parents 517fc2b + 69704f9 commit 818b20c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Google/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*/

if (!class_exists('Google_Client')) {
require_once dirname(__FILE__) . '/../autoload.php';
require_once dirname(__FILE__) . '/autoload.php';
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/Google/Collection.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

if (!class_exists('Google_Client')) {
require_once dirname(__FILE__) . '/../autoload.php';
require_once dirname(__FILE__) . '/autoload.php';
}

/**
Expand Down

0 comments on commit 818b20c

Please sign in to comment.