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