Skip to content

Commit

Permalink
Yaml component update
Browse files Browse the repository at this point in the history
  • Loading branch information
radutopala committed Jul 18, 2016
1 parent 51f33ae commit 5c46d10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Skype/Authentication/FileTokenStorage.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function __construct($file = null)
*/
public function read($key = 'access_token')
{
$content = Yaml::parse($this->file);
$content = Yaml::parse(file_get_contents($this->file));

return isset($content[$key]) ? $content[$key] : null;
}
Expand Down

0 comments on commit 5c46d10

Please sign in to comment.