intelephense
1.14.41.16.1
lib/stub/mongodb/BSON/BinaryInterface.phplib/stub/mongodb/BSON/BinaryInterface.php+3−3
Index: package/lib/stub/mongodb/BSON/BinaryInterface.php
===================================================================
--- package/lib/stub/mongodb/BSON/BinaryInterface.php
+++ package/lib/stub/mongodb/BSON/BinaryInterface.php
@@ -11,19 +11,19 @@
/**
* @link https://www.php.net/manual/en/mongodb-bson-binaryinterface.getdata.php
* @return string Returns the BinaryInterface's data
*/
- public function getData();
+ public function getData(): string;
/**
* @link https://www.php.net/manual/en/mongodb-bson-binaryinterface.gettype.php
* @return int Returns the BinaryInterface's type.
*/
- public function getType();
+ public function getType(): int;
/**
* This method is an alias of: MongoDB\BSON\BinaryInterface::getData().
* @link https://www.php.net/manual/en/mongodb-bson-binaryinterface.tostring.php
* @return string Returns the BinaryInterface's data.
*/
- public function __toString();
+ public function __toString(): string;
}