Client Bundle
Browser
Detect the browser name:
$browser = new Client\Browser(Request $request); $browser->getOutput() : string;
Desktop
Detect the desktop device:
$desktop = new Client\Desktop(Request $request); $desktop->getOutput() : string;
Engine
Detect the browser engine:
$engine = new Client\Engine(Request $request); $engine->getOutput() : string;
Mobile
Detect the mobile device:
$mobile = new Client\Mobile(Request $request); $mobile->getOutput() : string;
Tablet
Detect the tablet device:
$tablet = new Client\Tablet(Request $request); $tablet->getOutput() : string;
Version
Detect the browser version:
$version = new Client\Version(Request $request); $version->getOutput() : string;Edit on GitHub