You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* 6.2:
Remove 6.0 and 6.1 from the PR template
[Validator] Make ConstraintValidatorTestCase compatible with PHPUnit 10
[WebProfilerBundle] Fix some minor HTML issues
[WebProfilerBundle] Disable Turbo for debug toolbar links
[WebProfilerBundle] Fix an accessibility issue in the search form of the header
[Mailer][MailPace] Fix undefined key in error response
[Form] Fix PasswordHasherListener to work with empty data
[PropertyInfo] Add meaningful message when `phpstan/phpdoc-parser` is not installed when using `PhpStanExtractor`
Copy file name to clipboardExpand all lines: src/Symfony/Component/Form/Tests/Extension/PasswordHasher/Type/PasswordTypePasswordHasherExtensionTest.php
+36
Original file line number
Diff line number
Diff line change
@@ -77,6 +77,42 @@ public function testPasswordHashSuccess()
Copy file name to clipboardExpand all lines: src/Symfony/Component/PropertyInfo/Extractor/PhpStanExtractor.php
+4
Original file line number
Diff line number
Diff line change
@@ -64,6 +64,10 @@ public function __construct(array $mutatorPrefixes = null, array $accessorPrefix
64
64
thrownew \LogicException(sprintf('Unable to use the "%s" class as the "phpdocumentor/type-resolver" package is not installed. Try running composer require "phpdocumentor/type-resolver".', __CLASS__));
65
65
}
66
66
67
+
if (!class_exists(PhpDocParser::class)) {
68
+
thrownew \LogicException(sprintf('Unable to use the "%s" class as the "phpstan/phpdoc-parser" package is not installed. Try running composer require "phpstan/phpdoc-parser".', __CLASS__));
0 commit comments