Asvae\ApiTester\Collections\RequestCollection::load PHP Method

load() public method

Load data to collection.
public load ( $data ) : static
$data
return static
    public function load($data)
    {
        foreach ($data as $row) {
            $this->put($row['id'], RequestEntity::createExisting($row));
        }
        return $this;
    }