/**
* Creates a token record
*
- * @param string $access_token
- * @param string $token_type
- * @param string $scope
- * @param string $created_at
- * @param string $me
+ * @param string $access_token Token string
+ * @param string $token_type Always "Bearer"
+ * @param string $scope Combination of "read write follow push"
+ * @param string $created_at Creation date of the token
+ * @param string $me Actor profile of the token owner
*/
public function __construct(string $access_token, string $token_type, string $scope, string $created_at, string $me = null)
{