We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68d68e3 commit e6e08b3Copy full SHA for e6e08b3
tests/Model/ChangeStreamIteratorTest.php
@@ -1,5 +1,8 @@
1
<?php
2
3
+/* Enable strict types to disable type coercion for arguments. Without this, the
4
+ * non-int test values 3.14 and true would be silently coerced to integers,
5
+ * which is not what we're expecting to test here. */
6
declare(strict_types=1);
7
8
namespace MongoDB\Tests\Model;
tests/Operation/DeleteTest.php
namespace MongoDB\Tests\Operation;
0 commit comments