This commit is contained in:
xl
2023-11-06 10:12:11 +08:00
parent 796676af48
commit b21db849fa
2 changed files with 47 additions and 0 deletions
+18
View File
@@ -776,4 +776,22 @@ class Request implements ServerRequestInterface
// TODO: Implement withoutAttribute() method.
return $this->__call__(__FUNCTION__, $name);
}
/**
* @return int
*/
public function offset(): int
{
return $this->__call__(__FUNCTION__);
}
/**
* @return int
*/
public function size(): int
{
return $this->__call__(__FUNCTION__);
}
}