git subrepo commit mailcow/src/mailcow-dockerized

subrepo: subdir:   "mailcow/src/mailcow-dockerized"
  merged:   "308860af"
upstream: origin:   "https://github.com/mailcow/mailcow-dockerized.git"
  branch:   "master"
  commit:   "3f1a5af8"
git-subrepo: version:  "0.4.5"
  origin:   "???"
  commit:   "???"
Change-Id: I5d51c14b45db54fe706be40a591ddbfcea50d4b0
diff --git a/mailcow/src/mailcow-dockerized/data/web/inc/lib/vendor/symfony/translation/MessageCatalogueInterface.php b/mailcow/src/mailcow-dockerized/data/web/inc/lib/vendor/symfony/translation/MessageCatalogueInterface.php
index 5d83bd8..75e3a2f 100644
--- a/mailcow/src/mailcow-dockerized/data/web/inc/lib/vendor/symfony/translation/MessageCatalogueInterface.php
+++ b/mailcow/src/mailcow-dockerized/data/web/inc/lib/vendor/symfony/translation/MessageCatalogueInterface.php
@@ -24,17 +24,13 @@
 
     /**
      * Gets the catalogue locale.
-     *
-     * @return string The locale
      */
-    public function getLocale();
+    public function getLocale(): string;
 
     /**
      * Gets the domains.
-     *
-     * @return array An array of domains
      */
-    public function getDomains();
+    public function getDomains(): array;
 
     /**
      * Gets the messages within a given domain.
@@ -42,10 +38,8 @@
      * If $domain is null, it returns all messages.
      *
      * @param string $domain The domain name
-     *
-     * @return array An array of messages
      */
-    public function all(string $domain = null);
+    public function all(string $domain = null): array;
 
     /**
      * Sets a message translation.
@@ -61,30 +55,24 @@
      *
      * @param string $id     The message id
      * @param string $domain The domain name
-     *
-     * @return bool true if the message has a translation, false otherwise
      */
-    public function has(string $id, string $domain = 'messages');
+    public function has(string $id, string $domain = 'messages'): bool;
 
     /**
      * Checks if a message has a translation (it does not take into account the fallback mechanism).
      *
      * @param string $id     The message id
      * @param string $domain The domain name
-     *
-     * @return bool true if the message has a translation, false otherwise
      */
-    public function defines(string $id, string $domain = 'messages');
+    public function defines(string $id, string $domain = 'messages'): bool;
 
     /**
      * Gets a message translation.
      *
      * @param string $id     The message id
      * @param string $domain The domain name
-     *
-     * @return string The message translation
      */
-    public function get(string $id, string $domain = 'messages');
+    public function get(string $id, string $domain = 'messages'): string;
 
     /**
      * Sets translations for a given domain.
@@ -119,17 +107,15 @@
 
     /**
      * Gets the fallback catalogue.
-     *
-     * @return self|null A MessageCatalogueInterface instance or null when no fallback has been set
      */
-    public function getFallbackCatalogue();
+    public function getFallbackCatalogue(): ?self;
 
     /**
      * Returns an array of resources loaded to build this collection.
      *
-     * @return ResourceInterface[] An array of resources
+     * @return ResourceInterface[]
      */
-    public function getResources();
+    public function getResources(): array;
 
     /**
      * Adds a resource for this collection.