17 lines
257 B
PHP
17 lines
257 B
PHP
|
<?php
|
||
|
|
||
|
namespace BeSimple\SoapClient\SoapServerAuthentication;
|
||
|
|
||
|
interface SoapServerAuthenticationInterface
|
||
|
{
|
||
|
/**
|
||
|
* @return int
|
||
|
*/
|
||
|
public function getAuthentication();
|
||
|
|
||
|
/**
|
||
|
* @return array
|
||
|
*/
|
||
|
public function toArray();
|
||
|
}
|