From 6efa560fd5ef90b403a19d6ed8890cc31a3fb325 Mon Sep 17 00:00:00 2001 From: Marc Scholten Date: Mon, 20 Jun 2016 14:57:45 +0200 Subject: [PATCH] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 98620ea..8f4cb8e 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,9 @@ Install via composer composer require mpscholten/request-parser ``` -If you're using the `symfony/http-foundation` `Request`, you just need to import a trait into your controller: +If you're using the `symfony/http-foundation` `Request`, you just need to import a trait into your controller. If you're using some other `Request` abstraction (or maybe just plain old `$_GET` and friends), [check out this example](https://github.com/mpscholten/request-parser/blob/master/examples/not-symfony.php). + +The following example asumes you're using the symfony `Request`: ```php class MyController