for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace kalanis\UploadPerPartes\Responses;
/**
* Class LastKnownResponse
* @package kalanis\UploadPerPartes\Responses
* Responses from server to client
*/
class LastKnownResponse extends BasicResponse
{
public int $lastKnownPart = 0;
public function setLastKnown(int $lastKnownPart): self
$this->lastKnownPart = $lastKnownPart;
return $this;
}