diff --git a/README.md b/README.md index 0c41066..19e600c 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,6 @@ # Dynamic Property Loader Library [![Build Status](https://travis-ci.com/mradhi/property-loader.svg?branch=main)](https://travis-ci.com/mradhi/property-loader) -[![Coverage Status](https://coveralls.io/repos/github/mradhi/property-loader/badge.svg?branch=main)](https://coveralls.io/github/mradhi/property-loader?branch=main) A PHP library to dynamically load object properties using custom handlers (useful for DTO's). It comes with two `ClassMetadata` mapping loaders. @@ -116,9 +115,6 @@ As you can see here, we added the new custom loader inside the Person class, in our case, we want to load the property "email" based on the value of the "name" property. -**@Load\Aware** annotation is used to tell our PropertyLoader library, that we want -to cascade the dynamic load for that custom object too. - Now, it's time to see how things are going for our Person object: ```php