Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

[Validator] GH-50526: Reverting ExecutionContextInterface void return types in favor of docblock annotations. #50540

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 5, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -123,37 +123,44 @@ public function getObject(): ?object;
*
* @param object|null $object The currently validated object
* @param string $propertyPath The property path to the current value
*
* @return void
*/
public function setNode(mixed $value, ?object $object, MetadataInterface $metadata = null, string $propertyPath): void;
public function setNode(mixed $value, ?object $object, MetadataInterface $metadata = null, string $propertyPath);

/**
* Warning: Should not be called by user code, to be used by the validator engine only.
*
* @param string|null $group The validated group
*
* @return void
*/
public function setGroup(?string $group): void;
public function setGroup(?string $group);

/**
* Warning: Should not be called by user code, to be used by the validator engine only.
*
* @return void
*/
public function setConstraint(Constraint $constraint): void;
public function setConstraint(Constraint $constraint);

/**
* Warning: Should not be called by user code, to be used by the validator engine only.
*
* @param string $cacheKey The hash of the object
* @param string $groupHash The group's name or hash, if it is group
* sequence
*
* @return void
*/
public function markGroupAsValidated(string $cacheKey, string $groupHash): void;
public function markGroupAsValidated(string $cacheKey, string $groupHash);

/**
* Warning: Should not be called by user code, to be used by the validator engine only.
*
* @param string $cacheKey The hash of the object
* @param string $groupHash The group's name or hash, if it is group
* sequence
*
*/
public function isGroupValidated(string $cacheKey, string $groupHash): bool;

Expand All @@ -162,15 +169,16 @@ public function isGroupValidated(string $cacheKey, string $groupHash): bool;
*
* @param string $cacheKey The hash of the object
* @param string $constraintHash The hash of the constraint
*
* @return void
*/
public function markConstraintAsValidated(string $cacheKey, string $constraintHash): void;
public function markConstraintAsValidated(string $cacheKey, string $constraintHash);

/**
* Warning: Should not be called by user code, to be used by the validator engine only.
*
* @param string $cacheKey The hash of the object
* @param string $constraintHash The hash of the constraint
*
*/
public function isConstraintValidated(string $cacheKey, string $constraintHash): bool;

Expand All @@ -188,7 +196,6 @@ public function markObjectAsInitialized(string $cacheKey): void;
*
* @param string $cacheKey The hash of the object
*
*
* @see ObjectInitializerInterface
*/
public function isObjectInitialized(string $cacheKey): bool;
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.