for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Asiadevmedia\GuzzleRateLimiter;
class InMemoryStore implements Store
{
/** @var int[] */
protected $timestamps = [];
public function get(): array
return $this->timestamps;
}
public function push(int $timestamp, int $limit)
$this->timestamps[] = $timestamp;