Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
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}