IAccessHandler
last analyzed

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 6
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
allow() 0 1 ?
deny() 0 1 ?
1
<?php
2
3
declare(strict_types=1);
4
5
namespace SixtyEightPublishers\Application\RemoteAccessManager\Handler;
6
7
interface IAccessHandler
8
{
9
	public function allow();
10
11
	public function deny();
12
}
13