14 lines
No EOL
197 B
PHP
Executable file
14 lines
No EOL
197 B
PHP
Executable file
<?php
|
|
|
|
namespace MVC\Classe\Implement\Contrat;
|
|
|
|
interface RestReponseInterface
|
|
{
|
|
public function get();
|
|
|
|
public function post();
|
|
|
|
public function put();
|
|
|
|
public function delete();
|
|
} |