Lines n/a 0 / 0
Functions and Methods n/a 0 / 0
Classes and Traits n/a 0 / 0
Covered by tests of size
Name Lines Functions and Methods CRAP Classes and Traits
HibpConfig n/a 0 / 0 n/a 0 / 0 0 n/a 0 / 0
1<?php
2
3declare(strict_types=1);
4
5namespace Icawebdesign\Hibp\Traits;
6
7trait HibpConfig
8{
9    protected string $userAgent = 'hibp-php/7';
10
11    protected string $hibpApiRoot = 'https://haveibeenpwned.com/api';
12
13    protected int $apiVersion = 3;
14
15    protected string $pwnedPasswordsApiRoot = 'https://api.pwnedpasswords.com';
16}