From 7fee75cdb3dbc242554210d06873791b230b98c0 Mon Sep 17 00:00:00 2001 From: thinkingmedia Date: Wed, 22 Feb 2017 10:49:30 -0500 Subject: [PATCH] fix doc --- tests/TestCase/Database/QueryTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestCase/Database/QueryTest.php b/tests/TestCase/Database/QueryTest.php index 63bf914d7ed..af4c8b49bc6 100644 --- a/tests/TestCase/Database/QueryTest.php +++ b/tests/TestCase/Database/QueryTest.php @@ -3377,7 +3377,7 @@ public function testInsertExpressionValues() public function testIdentifierExpression() { $query = new Query($this->connection); - /* @var IdentifierExpression $expression */ + /* @var \Cake\Database\Expression\IdentifierExpression $expression */ $expression = $query->identifier('foo'); $this->assertInstanceOf(IdentifierExpression::class, $expression); $this->assertEquals('foo', $expression->getIdentifier());