for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace LunixREST\Throttle;
use LunixREST\APIRequest\APIRequest;
class NoThrottle implements Throttle
{
/**
* Never throttle
* @param \LunixREST\APIRequest\APIRequest $request
* @return bool
*/
public function shouldThrottle(APIRequest $request): bool
return false;
}
* Log that a request took place
public function logRequest(APIRequest $request)
//Do nothing