diff options
author | Julius Härtl <jus@bitgrid.net> | 2020-07-10 14:13:29 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2020-07-15 09:28:12 +0200 |
commit | 35bdb998ef7bc1a52c8cd3a28ee727f874dde557 (patch) | |
tree | dd03c4d07746d4b52e466bc5a2e006d573f78cf4 /lib/public | |
parent | e6fb1b9878c2981c5bf5526a4d4e83aae77f436d (diff) | |
download | nextcloud-server-35bdb998ef7bc1a52c8cd3a28ee727f874dde557.tar.gz nextcloud-server-35bdb998ef7bc1a52c8cd3a28ee727f874dde557.zip |
Dashboard strict typing
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/Dashboard/IManager.php | 3 | ||||
-rw-r--r-- | lib/public/Dashboard/IPanel.php | 3 | ||||
-rw-r--r-- | lib/public/Dashboard/RegisterPanelEvent.php | 3 |
3 files changed, 9 insertions, 0 deletions
diff --git a/lib/public/Dashboard/IManager.php b/lib/public/Dashboard/IManager.php index 51ee7d2fbe5..985c8c7838f 100644 --- a/lib/public/Dashboard/IManager.php +++ b/lib/public/Dashboard/IManager.php @@ -1,4 +1,7 @@ <?php + +declare(strict_types=1); + /** * @copyright Copyright (c) 2020 Julius Härtl <jus@bitgrid.net> * diff --git a/lib/public/Dashboard/IPanel.php b/lib/public/Dashboard/IPanel.php index 78c7d09c009..59d88f7a7e9 100644 --- a/lib/public/Dashboard/IPanel.php +++ b/lib/public/Dashboard/IPanel.php @@ -1,4 +1,7 @@ <?php + +declare(strict_types=1); + /** * @copyright Copyright (c) 2020 Julius Härtl <jus@bitgrid.net> * diff --git a/lib/public/Dashboard/RegisterPanelEvent.php b/lib/public/Dashboard/RegisterPanelEvent.php index bc0028d5c0c..2bd157127fd 100644 --- a/lib/public/Dashboard/RegisterPanelEvent.php +++ b/lib/public/Dashboard/RegisterPanelEvent.php @@ -1,4 +1,7 @@ <?php + +declare(strict_types=1); + /** * @copyright Copyright (c) 2020 Julius Härtl <jus@bitgrid.net> * |