cast to int

Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
Robin Appelman 2016-10-31 14:26:29 +01:00
parent bb65d3b03d
commit a4ea20a259
No known key found for this signature in database
GPG Key ID: 425003AC385454C5
2 changed files with 6 additions and 6 deletions

View File

@ -122,8 +122,8 @@ class DefaultToken extends Entity implements IToken {
return [
'id' => $this->id,
'name' => $this->name,
'lastActivity' => $this->lastActivity,
'type' => $this->type,
'lastActivity' => (int)$this->lastActivity,
'type' => (int)$this->type,
'scope' => $this->getScopeAsArray()
];
}

View File

@ -94,8 +94,8 @@ class AuthSettingsControllerTest extends TestCase {
[
'id' => 100,
'name' => null,
'lastActivity' => null,
'type' => null,
'lastActivity' => 0,
'type' => 0,
'canDelete' => false,
'current' => true,
'scope' => ['filesystem' => true]
@ -103,8 +103,8 @@ class AuthSettingsControllerTest extends TestCase {
[
'id' => 200,
'name' => null,
'lastActivity' => null,
'type' => null,
'lastActivity' => 0,
'type' => 0,
'canDelete' => true,
'scope' => ['filesystem' => true]
]