Passed
Branch master (2952f7)
by Mikaël
03:29
created

StructAttribute::get()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 1
dl 0
loc 3
ccs 2
cts 2
cp 1
crap 1
rs 10
c 0
b 0
f 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace WsdlToPhp\PackageGenerator\Container\Model;
6
7
use WsdlToPhp\PackageGenerator\Model\StructAttribute as Model;
8
9
final class StructAttribute extends AbstractModel
10
{
11 242
    public function getStructAttributeByName(string $name): ?Model
12
    {
13 242
        return $this->get($name);
14
    }
15
16 42
    public function getStructAttributeByCleanName(string $cleanedName): ?Model
17
    {
18 42
        return $this->getByCleanName($cleanedName);
19
    }
20
21 42
    public function getByCleanName(string $cleanedName): ?Model
22
    {
23 42
        $attribute = null;
24 42
        foreach ($this->objects as $object) {
25 42
            if ($object instanceof Model && $cleanedName === $object->getCleanName()) {
26 2
                $attribute = $object;
27
28 2
                break;
29
            }
30
        }
31
32 42
        return $attribute;
33
    }
34
35 386
    protected function objectClass(): string
36
    {
37 386
        return Model::class;
38
    }
39
}
40