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 a68b565 commit f6412b8Copy full SHA for f6412b8
.github/workflows/docs-configuration-reference/run.php
@@ -1,15 +1,15 @@
1
#!/usr/bin/env php
2
<?php
3
4
-if ($argc !== 3) {
+if ($argc !== 4) {
5
echo "./run.php path-to-symfony path-to-docs-page FrameworkBundle \n";
6
- exit(1);
+ exit(2);
7
}
8
9
// Input
10
$symfony = $argv[1];
11
$docPage = $argv[2];
12
-$bundleName = $argv[2];
+$bundleName = $argv[3];
13
require $symfony.'/vendor/autoload.php';
14
15
$referenceContent = file_get_contents($docPage);
@@ -21,7 +21,6 @@
21
22
// always remove the first key
23
$config = $config[$key = array_key_first($config)];
24
-$x = 2;
25
26
$missingKeys = [];
27
parseConfigKeys($referenceContent, $config, $key, $missingKeys);
0 commit comments