/**
* Get file size
*
* @param string $filePath
* @return int
*/publicfunctiongetFileSize(string $filePath): int{
if (!file_exists($filePath)) {
return0;
}
return filesize($filePath);
}
到目前为止我已经这样试过了
/**
* Test get file size with invalid data
*/publicfunctiontestGetFileSizeWithValidData(){
$filePath = 'rgreherher';
$service = new Tickets_Service_ContactMomentVehicle();
$result = $service->getFileSize($filePath);
$this->assertSame($result, $filePath);
}
所以当我在终端上运行时
<string:rgreherher>does not match expected type "integer".