-
Notifications
You must be signed in to change notification settings - Fork 950
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix unit tests #701
Fix unit tests #701
Conversation
Travis is broken again |
Fix "Expiration (exp) time must be a unix time stamp" Here // on 32-bit
$d = 99999999900;
var_dump($d, ctype_digit($d));
//double(99999999900) bool(false)
// BUT
$d = '99999999900';
var_dump($d, ctype_digit($d));
//string(11) "99999999900" bool(true)
// on 64-bit
$d = 99999999900;
var_dump($d, ctype_digit($d));
//int(99999999900) bool(true)
$d = '99999999900';
var_dump($d, ctype_digit($d));
//string(11) "99999999900" bool(true) |
`access_token`, `client_id`, etc.
May be we should also check that |
default scope (not null)
ping @bshaffer |
We should make this PR to Also, the tests are passing as-is, so I'm not entirely sure what this fixes. |
I'll make a few smaller PRs. |
No description provided.