We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79a76db commit e95b8d3Copy full SHA for e95b8d3
docs/includes/usage-examples/FindOneTest.php
@@ -54,10 +54,10 @@ public function testQBFindOne(): void
54
->orderBy('_id')
55
->first();
56
57
- echo $movie['title'];
+ echo $movie->title;
58
// end-qb-find-one
59
60
- $this->assertSame($movie['title'], 'The Shawshank Redemption');
+ $this->assertSame($movie->title, 'The Shawshank Redemption');
61
$this->expectOutputString('The Shawshank Redemption');
62
}
63
0 commit comments