8 lines
105 B
PHP
8 lines
105 B
PHP
<?php
|
|
interface Authentication {
|
|
public function handleHeader();
|
|
|
|
public function handleParams();
|
|
}
|
|
?>
|