SoapClientDriver
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

1 Method

Rating   Name   Duplication   Size   Complexity  
send() 0 1 ?
1
<?php declare(strict_types = 1);
2
3
namespace SlevomatEET\Driver;
4
5
interface SoapClientDriver
6
{
7
8
	public function send(string $request, string $location, string $action, int $soapVersion): string;
9
10
}
11