IEnvironmentDetector
last analyzed

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
detect() 0 1 ?
1
<?php
2
3
declare(strict_types=1);
4
5
namespace SixtyEightPublishers\Application\Environment;
6
7
interface IEnvironmentDetector
8
{
9
	/**
10
	 * If method does not return instance of \SixtyEightPublishers\Application\Environment\Profile, the default profile will be set automatically.
11
	 * @param \SixtyEightPublishers\Application\Environment\ProfileContainer $profileContainer
12
	 *
13
	 * @return mixed|void|Profile
14
	 */
15
	public function detect(ProfileContainer $profileContainer);
16
}
17