intelephense

1.14.41.16.1
lib/stub/mongodb/BSON/RegexInterface.php
lib/stub/mongodb/BSON/RegexInterface.php
+3−3
Index: package/lib/stub/mongodb/BSON/RegexInterface.php
===================================================================
--- package/lib/stub/mongodb/BSON/RegexInterface.php
+++ package/lib/stub/mongodb/BSON/RegexInterface.php
@@ -11,19 +11,19 @@
     /**
      * @link https://www.php.net/manual/en/mongodb-bson-regexinterface.getflags.php
      * @return string Returns the RegexInterface's flags.
      */
-    public function getFlags();
+    public function getFlags(): string;
 
     /**
      * @link https://www.php.net/manual/en/mongodb-bson-regexinterface.getpattern.php
      * @return string Returns the RegexInterface's pattern.
      */
-    public function getPattern();
+    public function getPattern(): string;
 
     /**
      * Returns the string representation of this RegexInterface
      * @link https://www.php.net/manual/en/mongodb-bson-regexinterface.tostring.php
      * @return string
      */
-    public function __toString();
+    public function __toString(): string;
 }