We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6dfaa7a commit dccc6ddCopy full SHA for dccc6dd
src/ToolBox/Tool/YouTubeTranscriber.php
@@ -16,10 +16,10 @@ public function __construct(
16
private HttpClientInterface $client,
17
) {
18
if (!class_exists(Crawler::class)) {
19
- throw new \LogicException('The Symfony DomCrawler component is required to use this tool.');
+ throw new \LogicException('The Symfony DomCrawler component is required to use this tool. Try running "composer require symfony/dom-crawler".');
20
}
21
if (!class_exists(CssSelectorConverter::class)) {
22
- throw new \LogicException('The Symfony CSS Selector component is required to use this tool.');
+ throw new \LogicException('The Symfony CSS Selector component is required to use this tool. Try running "composer require symfony/css-selector".');
23
24
25
0 commit comments