cast to int

Signed-off-by: Robin Appelman <robin@icewind.nl>
pull/719/head
Robin Appelman 9 years ago
parent bb65d3b03d
commit a4ea20a259
No known key found for this signature in database
GPG Key ID: 425003AC385454C5
  1. 4
      lib/private/Authentication/Token/DefaultToken.php
  2. 8
      tests/Settings/Controller/AuthSettingsControllerTest.php

@ -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()
];
}

@ -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]
]

Loading…
Cancel
Save