We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ba39540 + b4da1bc commit 001e2e4Copy full SHA for 001e2e4
src/Command/ConfigurationCommand.php
@@ -11,7 +11,7 @@
11
12
class ConfigurationCommand extends Command
13
{
14
- protected string $configPath = __DIR__ . '/../../config.yaml';
+ protected string $configPath = __DIR__ . '/../../../config.yaml';
15
protected array $config = [];
16
17
private GithubConnector $githubConnector;
src/Config/ConfigReader.php
@@ -16,7 +16,7 @@ class ConfigReader
public function read(): ?ConfigValues
18
19
- $configFile = __DIR__ . '/../../config.yaml';
+ $configFile = __DIR__ . '/../../../config.yaml';
20
21
if (!file_exists($configFile)) {
22
return null;
0 commit comments