Skip to content

Commit d332d8f

Browse files
committed
Merge remote-tracking branch 'origin/ai-68-how-can-we-work-around-requiring-absolute-paths-needed-for' into ai-68-how-can-we-work-around-requiring-absolute-paths-needed-for
2 parents 4dc5743 + 6df0b3e commit d332d8f

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/Install/CodeEnvironment/CodeEnvironment.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ abstract class CodeEnvironment
1717
{
1818
public bool $absolute = false;
1919

20-
public function __construct(protected readonly DetectionStrategyFactory $strategyFactory) {}
20+
public function __construct(protected readonly DetectionStrategyFactory $strategyFactory)
21+
{
22+
}
2123

2224
abstract public function name(): string;
2325

src/Install/CodeEnvironmentsDetector.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ class CodeEnvironmentsDetector
2727

2828
public function __construct(
2929
private readonly Container $container
30-
) {}
30+
) {
31+
}
3132

3233
/**
3334
* Detect installed applications on the current platform.

0 commit comments

Comments
 (0)