intelephense

1.14.41.16.1
lib/stub/mongodb/BSON/ObjectIdInterface.php
lib/stub/mongodb/BSON/ObjectIdInterface.php
+2−2
Index: package/lib/stub/mongodb/BSON/ObjectIdInterface.php
===================================================================
--- package/lib/stub/mongodb/BSON/ObjectIdInterface.php
+++ package/lib/stub/mongodb/BSON/ObjectIdInterface.php
@@ -11,13 +11,13 @@
     /**
      * @link https://www.php.net/manual/en/mongodb-bson-objectidinterface.gettimestamp.php
      * @return int Returns the timestamp component of this ObjectIdInterface.
      */
-    public function getTimestamp();
+    public function getTimestamp(): int;
 
     /**
      * Returns the hexadecimal representation of this ObjectId
      * @link https://www.php.net/manual/en/mongodb-bson-objectid.tostring.php
      * @return string Returns the hexadecimal representation of this ObjectId
      */
-    public function __toString();
+    public function __toString(): string;
 }