intelephense
1.14.41.16.1
lib/stub/mongodb/BSON/TimestampInterface.phplib/stub/mongodb/BSON/TimestampInterface.php+3−3
Index: package/lib/stub/mongodb/BSON/TimestampInterface.php
===================================================================
--- package/lib/stub/mongodb/BSON/TimestampInterface.php
+++ package/lib/stub/mongodb/BSON/TimestampInterface.php
@@ -15,22 +15,22 @@
* @link https://secure.php.net/manual/en/mongodb-bson-timestampinterface.getincrement.php
* @return int
* @since 1.3.0
*/
- public function getIncrement();
+ public function getIncrement(): int;
/**
* Returns the timestamp component of this TimestampInterface
* @link https://secure.php.net/manual/en/mongodb-bson-timestampinterface.gettimestamp.php
* @return int
* @since 1.3.0
*/
- public function getTimestamp();
+ public function getTimestamp(): int;
/**
* Returns the string representation of this TimestampInterface
* @link https://secure.php.net/manual/en/mongodb-bson-timestampinterface.tostring.php
* @return string
* @since 1.3.0
*/
- public function __toString();
+ public function __toString(): string;
}