Completed
Pull Request — master (#13)
by Niclas Leon
01:10
created

Bitbucket::verify()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 1
1
<?php
2
3
namespace Clarkeash\Shield\Services;
4
5
use Illuminate\Http\Request;
6
use Symfony\Component\HttpFoundation\IpUtils;
7
8
class Bitbucket extends BaseService
9
{
10
    public function verify(Request $request): bool
11
    {
12
        return IpUtils::checkIp($request->ip(), config('shield.services.bitbucket.allowed_ips'));
13
    }
14
15
    public function headers(): array
16
    {
17
        return [];
18
    }
19
}
20