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