From a4ea20a259dc2d98cda7b2e8d5ca08f3f1b48ff7 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 31 Oct 2016 14:26:29 +0100 Subject: [PATCH] cast to int Signed-off-by: Robin Appelman --- lib/private/Authentication/Token/DefaultToken.php | 4 ++-- 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 8e6774a0a2..ecfb1a44f2 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 f3ba2dd916..339c698bcb 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] ]