Passed
Pull Request — master (#41)
by Julien
02:16
created

ManifestException   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 10
rs 10
c 0
b 0
f 0
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A missingDependency() 0 3 1
A missingMetadata() 0 3 1
1
<?php
2
3
namespace TheAentMachine\Exception;
4
5
class ManifestException extends AenthillException
6
{
7
    public static function missingMetadata(string $key): self
8
    {
9
        return new self("Missing metadata for key '$key'");
10
    }
11
12
    public static function missingDependency(string $key): self
13
    {
14
        return new self("Missing dependency for key '$key'");
15
    }
16
}
17