diff options
author | Robin Appelman <robin@icewind.nl> | 2016-10-31 14:26:29 +0100 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2016-11-16 15:24:29 +0100 |
commit | a4ea20a259dc2d98cda7b2e8d5ca08f3f1b48ff7 (patch) | |
tree | 88fdfcca01cfc5f86fec79a78f36ef5c6989689e | |
parent | bb65d3b03d247d8bdde797af4acb963fe296595d (diff) | |
download | nextcloud-server-a4ea20a259dc2d98cda7b2e8d5ca08f3f1b48ff7.tar.gz nextcloud-server-a4ea20a259dc2d98cda7b2e8d5ca08f3f1b48ff7.zip |
cast to int
Signed-off-by: Robin Appelman <robin@icewind.nl>
-rw-r--r-- | lib/private/Authentication/Token/DefaultToken.php | 4 | ||||
-rw-r--r-- | tests/Settings/Controller/AuthSettingsControllerTest.php | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/lib/private/Authentication/Token/DefaultToken.php b/lib/private/Authentication/Token/DefaultToken.php index 8e6774a0a22..ecfb1a44f2e 100644 --- a/lib/private/Authentication/Token/DefaultToken.php +++ b/lib/private/Authentication/Token/DefaultToken.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() ]; } diff --git a/tests/Settings/Controller/AuthSettingsControllerTest.php b/tests/Settings/Controller/AuthSettingsControllerTest.php index f3ba2dd9167..339c698bcbb 100644 --- a/tests/Settings/Controller/AuthSettingsControllerTest.php +++ b/tests/Settings/Controller/AuthSettingsControllerTest.php @@ -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] ] |