generated from AlexSkrypnyk/scaffold
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDdev.php
More file actions
50 lines (40 loc) · 816 Bytes
/
Ddev.php
File metadata and controls
50 lines (40 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php
declare(strict_types=1);
namespace DrevOps\EnvironmentDetector\Providers;
use DrevOps\EnvironmentDetector\Environment;
/**
* DDEV provider.
*
* Detects the DDEV environment type.
*
* @package DrevOps\EnvironmentDetector\Providers
*/
class Ddev extends AbstractProvider {
/**
* {@inheritdoc}
*/
public const ID = 'ddev';
/**
* {@inheritdoc}
*/
public const LABEL = 'DDEV';
/**
* {@inheritdoc}
*/
protected function envPrefixes(): array {
return ['DDEV_', 'IS_DDEV_PROJECT'];
}
/**
* {@inheritdoc}
*/
public function active(): bool {
return getenv('IS_DDEV_PROJECT') !== FALSE;
}
/**
* {@inheritdoc}
*/
public function type(): ?string {
// DDEV may run in CI.
return getenv('CI') ? Environment::CI : Environment::LOCAL;
}
}