Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib/Model
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2020-05-12 16:04:42 +0300
committerJoas Schilling <coding@schilljs.com>2020-05-12 16:04:42 +0300
commit84d42604e60aa1c31ecf698dcc069f36c494148a (patch)
tree0c881194abad7aa1d6c103f1bad2b201b1c7acd4 /lib/Model
parent851f76ecd2be9302cf7938e287929f9296b398d0 (diff)
Run cs:fix
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/Model')
-rw-r--r--lib/Model/Command.php2
-rw-r--r--lib/Model/CommandMapper.php1
-rw-r--r--lib/Model/Message.php3
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/Model/Command.php b/lib/Model/Command.php
index 8734ea812..b00a51070 100644
--- a/lib/Model/Command.php
+++ b/lib/Model/Command.php
@@ -1,4 +1,5 @@
<?php
+
declare(strict_types=1);
/**
* @copyright Copyright (c) 2019 Joas Schilling <coding@schilljs.com>
@@ -39,7 +40,6 @@ use OCP\AppFramework\Db\Entity;
* @method int getEnabled()
*/
class Command extends Entity {
-
public const RESPONSE_NONE = 0;
public const RESPONSE_USER = 1;
public const RESPONSE_ALL = 2;
diff --git a/lib/Model/CommandMapper.php b/lib/Model/CommandMapper.php
index b10755259..877ce8203 100644
--- a/lib/Model/CommandMapper.php
+++ b/lib/Model/CommandMapper.php
@@ -1,4 +1,5 @@
<?php
+
declare(strict_types=1);
/**
* @copyright Copyright (c) 2019 Joas Schilling <coding@schilljs.com>
diff --git a/lib/Model/Message.php b/lib/Model/Message.php
index eadb38206..6d54f04c5 100644
--- a/lib/Model/Message.php
+++ b/lib/Model/Message.php
@@ -1,4 +1,5 @@
<?php
+
declare(strict_types=1);
/**
* @copyright Copyright (c) 2019 Joas Schilling <coding@schilljs.com>
@@ -22,12 +23,10 @@ declare(strict_types=1);
namespace OCA\Talk\Model;
-
use OCA\Talk\Participant;
use OCA\Talk\Room;
use OCP\Comments\IComment;
use OCP\IL10N;
-use OCP\IUser;
class Message {