Update User object of VK

This commit is contained in:
trogwar
2016-06-29 22:24:53 +03:00
parent b64d43ed62
commit 6652435afc
2 changed files with 17 additions and 20 deletions

12
src/User.php Normal file
View File

@@ -0,0 +1,12 @@
<?php
namespace J4k\OAuth2\Client\Provider;
use League\OAuth2\Client\Provider\GenericResourceOwner;
class User extends GenericResourceOwner
{
public $email;
public $location;
public $description;
}