|
@@ -62,7 +62,7 @@ class BaseModel extends Model {
|
|
|
/**
|
|
|
* @param array $where
|
|
|
*/
|
|
|
- public function setWhere(array $where): void {
|
|
|
+ public function setWhere(array $where) {
|
|
|
$this->where = $where;
|
|
|
}
|
|
|
|
|
@@ -76,7 +76,7 @@ class BaseModel extends Model {
|
|
|
/**
|
|
|
* @param int $page
|
|
|
*/
|
|
|
- public function setPage(int $page): void {
|
|
|
+ public function setPage(int $page) {
|
|
|
$this->page = $page;
|
|
|
}
|
|
|
|
|
@@ -90,7 +90,7 @@ class BaseModel extends Model {
|
|
|
/**
|
|
|
* @param int $pageSize
|
|
|
*/
|
|
|
- public function setPageSize(int $pageSize): void {
|
|
|
+ public function setPageSize(int $pageSize) {
|
|
|
$this->pageSize = $pageSize;
|
|
|
}
|
|
|
|
|
@@ -104,7 +104,7 @@ class BaseModel extends Model {
|
|
|
/**
|
|
|
* @param bool $sort
|
|
|
*/
|
|
|
- public function setSort(bool $sort): void {
|
|
|
+ public function setSort(bool $sort) {
|
|
|
$this->sort = $sort;
|
|
|
}
|
|
|
|
|
@@ -118,7 +118,7 @@ class BaseModel extends Model {
|
|
|
/**
|
|
|
* @param string $sortWhere
|
|
|
*/
|
|
|
- public function setSortWhere(string $sortWhere): void {
|
|
|
+ public function setSortWhere(string $sortWhere) {
|
|
|
$this->sortWhere = $sortWhere;
|
|
|
}
|
|
|
}
|