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

Bitbucket   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 3

Importance

Changes 0
Metric Value
wmc 2
lcom 0
cbo 3
dl 0
loc 12
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A verify() 0 4 1
A headers() 0 4 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