From b624ae084d2999d2382999497963935a87b831f4 Mon Sep 17 00:00:00 2001 From: C-Duv Date: Fri, 12 Dec 2014 18:30:21 +0100 Subject: [PATCH] Fixes incorrect namespace usage `StatsdClient` resides under `\M6Web\Component` namespace. Here we can either use `use \M6Web\Component\Statsd` or the fully qualified class name. For this "usage" example I chose the FQCN. --- doc/usage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/usage.md b/doc/usage.md index cf9dd4b..3ff802f 100644 --- a/doc/usage.md +++ b/doc/usage.md @@ -1,7 +1,7 @@ # usage ```php - $client = new Statsd\Client( + $client = new \M6Web\Component\Statsd\Client( array( 'serv1' => array('address' => 'udp://200.22.143.12'), 'serv2' => array('port' => 8125, 'address' => 'udp://200.22.143.12')