SAND-framework/application/class/Implement/Contrat/RestReponseInterface.php
2019-12-05 18:29:10 +01:00

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();
}