add data types

This commit is contained in:
ghost 2023-09-26 22:41:41 +03:00
parent 44e37cfbe6
commit d25634299e

View File

@ -2,9 +2,9 @@
class AppModelRequest {
private $_get;
private $_post;
private $_files;
private array $_get;
private array $_post;
private array $_files;
public function __construct(array $get, array $post, array $files)
{