From 5f64a1f2a40d9e977a9bd28041631084de2ed772 Mon Sep 17 00:00:00 2001 From: Markus Staab Date: Thu, 28 Apr 2016 23:02:46 +0200 Subject: [PATCH] Removed outdated note from readme about limitations --- README.md | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/README.md b/README.md index 195f711c..93eff808 100644 --- a/README.md +++ b/README.md @@ -120,30 +120,6 @@ As you can see, the generated hydrator is 20 times faster than `Zend\Hydrator\Re and `Zend\Hydrator\ArraySerializable`, and more than 90 times faster than `Zend\Hydrator\ClassMethods`. -## Limitations - -As of current implementation, GeneratedHydrator will not distinguish between properties from following -example: - -```php -class Foo -{ - private $bar; -} - -class Bar extends Foo -{ - private $bar; -} - -class Baz extends Foo -{ - private $bar; -} -``` - -This will be solved in milestone [1.1.0](https://github.com/Ocramius/GeneratedHydrator/issues?milestone=3) - ## Tuning for Production By default, GeneratedHydrator will generate hydrators on every new request.