diff --git a/README.md b/README.md index 0cf1145..9efc817 100644 --- a/README.md +++ b/README.md @@ -162,6 +162,18 @@ class ConstraintConfig */ public function setAssertPropertyDefaults(bool $assertPropertyDefaults); + /** + * Enabled by default. + * When disabled, only the direct class methods will be asserted and none of the parent's + * class methods. + */ + public function setAssertParentMethods(bool $assertParentMethods); + + /** + * A list of exact method names that should be excluded from the assertions. + */ + public function setExcludedMethods(array $excludedMethods); + /** * Callback function to create the constructor arguments for the class under test. *