@@ -65,7 +65,7 @@ protected function incrementPath(?JsonPointer $path, $i): JsonPointer
6565 * @param mixed $schema
6666 * @param mixed $i
6767 */
68- protected function checkArray (& $ value , $ schema = null , ?JsonPointer $ path = null , $ i = null ): void
68+ protected function checkArray (&$ value , $ schema = null , ?JsonPointer $ path = null , $ i = null ): void
6969 {
7070 $ validator = $ this ->factory ->createInstanceFor ('collection ' );
7171 $ validator ->check ($ value , $ schema , $ path , $ i );
@@ -82,7 +82,7 @@ protected function checkArray(& $value, $schema = null, ?JsonPointer $path = nul
8282 * @param mixed $additionalProperties
8383 * @param mixed $patternProperties
8484 */
85- protected function checkObject (& $ value , $ schema = null , ?JsonPointer $ path = null , $ properties = null ,
85+ protected function checkObject (&$ value , $ schema = null , ?JsonPointer $ path = null , $ properties = null ,
8686 $ additionalProperties = null , $ patternProperties = null , $ appliedDefaults = []): void
8787 {
8888 /** @var ObjectConstraint $validator */
@@ -99,7 +99,7 @@ protected function checkObject(& $value, $schema = null, ?JsonPointer $path = nu
9999 * @param mixed $schema
100100 * @param mixed $i
101101 */
102- protected function checkType (& $ value , $ schema = null , ?JsonPointer $ path = null , $ i = null ): void
102+ protected function checkType (&$ value , $ schema = null , ?JsonPointer $ path = null , $ i = null ): void
103103 {
104104 $ validator = $ this ->factory ->createInstanceFor ('type ' );
105105 $ validator ->check ($ value , $ schema , $ path , $ i );
@@ -114,7 +114,7 @@ protected function checkType(& $value, $schema = null, ?JsonPointer $path = null
114114 * @param mixed $schema
115115 * @param mixed $i
116116 */
117- protected function checkUndefined (& $ value , $ schema = null , ?JsonPointer $ path = null , $ i = null , $ fromDefault = false ): void
117+ protected function checkUndefined (&$ value , $ schema = null , ?JsonPointer $ path = null , $ i = null , $ fromDefault = false ): void
118118 {
119119 /** @var UndefinedConstraint $validator */
120120 $ validator = $ this ->factory ->createInstanceFor ('undefined ' );
0 commit comments