From c15d7623d84519b83fc6bac931b655359636955c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Pineau?= Date: Fri, 6 Sep 2019 10:39:50 +0200 Subject: [PATCH] Fixed PHPDoc of Validator::validate() method There are no BaseConstraint::validate(), so PHPDoc can not be inherited --- src/JsonSchema/Validator.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/JsonSchema/Validator.php b/src/JsonSchema/Validator.php index e683daa1..7b31279c 100644 --- a/src/JsonSchema/Validator.php +++ b/src/JsonSchema/Validator.php @@ -35,8 +35,6 @@ class Validator extends BaseConstraint * The validation works as defined by the schema proposal in http://json-schema.org. * * Note that the first argument is passed by reference, so you must pass in a variable. - * - * {@inheritdoc} */ public function validate(&$value, $schema = null, $checkMode = null) {