From 628278721b37565c9f8664e72f9dc8600ad974e4 Mon Sep 17 00:00:00 2001 From: John Kodumal Date: Wed, 29 Apr 2015 14:29:49 -0700 Subject: [PATCH] Update with links to expanded documentation --- README.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b63d18580..1280df1f5 100644 --- a/README.md +++ b/README.md @@ -23,9 +23,14 @@ Your first feature flag 2. In your application code, use the feature's key to check whether the flag is on for each user: - $user = new LaunchDarkly\LDUser("user@test.com"); + $user = new LaunchDarkly\LDUser("user@test.com"); if ($client->toggle("your.flag.key", $user)) { # application code to show the feature } else { # the code to run if the feature is off - } \ No newline at end of file + } + +Learn more +----------- + +Check out our [documentation](http://docs.launchdarkly.com) for in-depth instructions on configuring and using LaunchDarkly. You can also head straight to the [complete reference guide for this SDK](http://docs.launchdarkly.com/v1.0/docs/php-sdk-reference). \ No newline at end of file