Files
rpsls-game/tests/_support/HTTP/MockIncomingRequest.php
2019-12-02 14:56:47 -06:00

18 lines
355 B
PHP

<?php namespace Tests\Support\HTTP;
use CodeIgniter\HTTP\IncomingRequest;
class MockIncomingRequest extends IncomingRequest
{
// public function populateHeaders()
// {
// // Don't do anything... force the tester to manually set the headers they want.
// }
public function detectURI($protocol, $baseURL)
{
// Do nothing...
}
}