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.
2 parents 44d45cc + 81c694b commit 4232c8fCopy full SHA for 4232c8f
src/Install/GuidelineComposer.php
@@ -28,12 +28,13 @@ class GuidelineComposer
28
*
29
* @var array<string, string[]>
30
*/
31
- protected array $packagePriorities = [
32
- Packages::PEST->value => [Packages::PHPUNIT->value],
33
- ];
+ protected array $packagePriorities;
34
35
public function __construct(protected Roster $roster, protected Herd $herd)
36
{
+ $this->packagePriorities = [
+ Packages::PEST->value => [Packages::PHPUNIT->value],
37
+ ];
38
$this->config = new GuidelineConfig;
39
$this->guidelineAssist = new GuidelineAssist($roster);
40
}
0 commit comments