Skip to content

Commit 12d7400

Browse files
committed
chore: dummy product description
1 parent fdbad07 commit 12d7400

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/Metadata/Resource/Factory/PhpDocResourceMetadataCollectionFactory.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ public function __construct(private readonly ResourceMetadataCollectionFactoryIn
6464
$phpDocParser = new PhpDocParser($config, new TypeParser($config, new ConstExprParser($config)), new ConstExprParser($config));
6565
$lexer = new Lexer($config);
6666
} elseif (class_exists(PhpDocParser::class)) {
67-
$phpDocParser = new PhpDocParser(new TypeParser(new ConstExprParser()), new ConstExprParser());
68-
$lexer = new Lexer();
67+
$phpDocParser = new PhpDocParser(new TypeParser(new ConstExprParser()), new ConstExprParser()); // @phpstan-ignore-line
68+
$lexer = new Lexer(); // @phpstan-ignore-line
6969
}
7070
$this->phpDocParser = $phpDocParser;
7171
$this->lexer = $lexer;

tests/Fixtures/TestBundle/Document/DummyProduct.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
/**
2424
* Dummy Product.
2525
*
26-
* https://github.com/api-platform/core/issues/1107.
26+
* @see https://github.com/api-platform/core/issues/1107
2727
*
2828
* @author Antoine Bluchet <[email protected]>
2929
*/

tests/Fixtures/TestBundle/Entity/DummyProduct.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
/**
2424
* Dummy Product.
2525
*
26-
* https://github.com/api-platform/core/issues/1107.
26+
* @see https://github.com/api-platform/core/issues/1107
2727
*
2828
* @author Antoine Bluchet <[email protected]>
2929
*/

0 commit comments

Comments
 (0)