1
0
mirror of https://github.com/maximebf/php-debugbar.git synced 2025-01-17 05:18:32 +01:00
php-debugbar/docs/http_drivers.md

13 lines
463 B
Markdown
Raw Normal View History

2013-09-19 18:05:12 -04:00
# HTTP drivers
Some features of the debug bar requires sending http headers or
using the session. Many frameworks implement their own mechanism
on top of PHP native features.
2013-10-24 17:24:14 -04:00
To make integration with other frameworks as easy as possible,
2013-09-19 18:05:12 -04:00
the `DebugBar` object uses an instance of `DebugBar\HttpDriverInterface`
to access those features.
2014-01-16 21:41:41 +00:00
`DebugBar\PhpHttpDriver`, which uses native PHP mechanisms, is provided
and will be used if no other driver are specified.