diff options
Diffstat (limited to 'tests/lib/Notification')
-rw-r--r-- | tests/lib/Notification/ActionTest.php | 1 | ||||
-rw-r--r-- | tests/lib/Notification/DummyApp.php | 2 | ||||
-rw-r--r-- | tests/lib/Notification/DummyNotifier.php | 2 | ||||
-rw-r--r-- | tests/lib/Notification/NotificationTest.php | 2 |
4 files changed, 3 insertions, 4 deletions
diff --git a/tests/lib/Notification/ActionTest.php b/tests/lib/Notification/ActionTest.php index 1923f2305e1..6016760c24f 100644 --- a/tests/lib/Notification/ActionTest.php +++ b/tests/lib/Notification/ActionTest.php @@ -21,7 +21,6 @@ namespace Test\Notification; - use OC\Notification\Action; use OCP\Notification\IAction; use Test\TestCase; diff --git a/tests/lib/Notification/DummyApp.php b/tests/lib/Notification/DummyApp.php index 680fb44d009..b1281f6b7a0 100644 --- a/tests/lib/Notification/DummyApp.php +++ b/tests/lib/Notification/DummyApp.php @@ -1,4 +1,5 @@ <?php + declare(strict_types=1); /** * @copyright Copyright (c) 2019 Joas Schilling <coding@schilljs.com> @@ -22,7 +23,6 @@ declare(strict_types=1); namespace Test\Notification; - use OCP\Notification\IApp; use OCP\Notification\INotification; diff --git a/tests/lib/Notification/DummyNotifier.php b/tests/lib/Notification/DummyNotifier.php index 849fb3c275f..92c1ddfb310 100644 --- a/tests/lib/Notification/DummyNotifier.php +++ b/tests/lib/Notification/DummyNotifier.php @@ -1,4 +1,5 @@ <?php + declare(strict_types=1); /** * @copyright Copyright (c) 2019 Joas Schilling <coding@schilljs.com> @@ -22,7 +23,6 @@ declare(strict_types=1); namespace Test\Notification; - use OCP\Notification\AlreadyProcessedException; use OCP\Notification\INotification; use OCP\Notification\INotifier; diff --git a/tests/lib/Notification/NotificationTest.php b/tests/lib/Notification/NotificationTest.php index c70fa1ec7df..12c6818588c 100644 --- a/tests/lib/Notification/NotificationTest.php +++ b/tests/lib/Notification/NotificationTest.php @@ -1,4 +1,5 @@ <?php + declare (strict_types = 1); /** * @author Joas Schilling <nickvergessen@owncloud.com> @@ -22,7 +23,6 @@ declare (strict_types = 1); namespace Test\Notification; - use OC\Notification\Notification; use OCP\Notification\IAction; use OCP\Notification\INotification; |