MockHttp.php 438 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Lithium: the most rad php framework
  4. *
  5. * @copyright Copyright 2013, Union of RAD (http://union-of-rad.org)
  6. * @license http://opensource.org/licenses/bsd-license.php The BSD License
  7. */
  8. namespace lithium\tests\mocks\security\auth\adapter;
  9. class MockHttp extends \lithium\security\auth\adapter\Http {
  10. public $headers = array();
  11. protected function _writeHeader($string) {
  12. $this->headers[] = $string;
  13. }
  14. }
  15. ?>