New files added

This commit is contained in:
Patryk Hegenberg 2022-12-18 15:10:02 +01:00
parent 44a6d295d8
commit 594b8a64fa
2 changed files with 18 additions and 0 deletions

6
Response.php Normal file
View file

@ -0,0 +1,6 @@
<?php
class Response{
const NOT_FOUND = 404;
const FORBIDDEN = 403;
}