Skip to content

Commit ace6cdd

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

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
@@ -61,8 +61,8 @@ public function __construct(private readonly ResourceMetadataCollectionFactoryIn
6161
$lexer = null;
6262
if (class_exists(PhpDocParser::class) && class_exists(ParserConfig::class)) {
6363
$config = new ParserConfig([]);
64-
$phpDocParser = new PhpDocParser($config, new TypeParser($config, new ConstExprParser($config)), new ConstExprParser($config));
65-
$lexer = new Lexer($config);
64+
$phpDocParser = new PhpDocParser($config, new TypeParser($config, new ConstExprParser($config)), new ConstExprParser($config)); // @phpstan-ignore-line
65+
$lexer = new Lexer($config); // @phpstan-ignore-line
6666
} elseif (class_exists(PhpDocParser::class)) {
6767
$phpDocParser = new PhpDocParser(new TypeParser(new ConstExprParser()), new ConstExprParser());
6868
$lexer = new 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 <soyuka@gmail.com>
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 <soyuka@gmail.com>
2929
*/

0 commit comments

Comments
 (0)