Passed
Push — master ( bcf8fa...3d849e )
by
unknown
03:09 queued 51s
created

ZipCode::setValue()   A

Complexity

Conditions 5
Paths 4

Size

Total Lines 16
Code Lines 9

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 5
eloc 9
nc 4
nop 1
dl 0
loc 16
rs 9.6111
c 0
b 0
f 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Talentify\ValueObject\Geography\Address\ByCountry\Us;
6
7
use Talentify\ValueObject\Geography\Address\PostalCode;
8
9
/**
10
 * @see https://en.wikipedia.org/wiki/ZIP_Code
11
 */
12
class ZipCode extends PostalCode
13
{
14
}
15