Skip to content

Commit

Permalink
Updated readme with the new configuration options.
Browse files Browse the repository at this point in the history
  • Loading branch information
frankdekker committed Jul 18, 2021
1 parent 7ebae9a commit 2b298a5
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*
Expand Down

0 comments on commit 2b298a5

Please sign in to comment.