thinkingmedia 9 years ago
parent
commit
8aaea1ae31
1 changed files with 3 additions and 1 deletions
  1. 3 1
      tests/TestCase/Database/QueryTest.php

+ 3 - 1
tests/TestCase/Database/QueryTest.php

@@ -3377,7 +3377,9 @@ class QueryTest extends TestCase
     public function testIdentifierExpression()
     {
         $query = new Query($this->connection);
-        /** @var IdentifierExpression $expression */
+        /**
+         * @var IdentifierExpression $expression
+         */
         $expression = $query->identifier('foo');
         $this->assertInstanceOf(IdentifierExpression::class, $expression);
         $this->assertEquals('foo', $expression->getIdentifier());