You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -312,74 +254,6 @@ public function validateValue($value, $constraints, $subPath = '', $groups = nul
312
254
}
313
255
}
314
256
315
-
/**
316
-
* Returns the class name of the current node.
317
-
*
318
-
* @return string|null The class name or null, if the current node does not
319
-
* hold information about a class.
320
-
*
<
EED3
/tr>
321
-
* @see getClassName
322
-
*
323
-
* @deprecated Deprecated since version 2.2, to be removed in 2.3. Use
324
-
* {@link getClassName} instead.
325
-
*/
326
-
publicfunctiongetCurrentClass()
327
-
{
328
-
trigger_error('getCurrentClass() is deprecated since version 2.2 and will be removed in 2.3. Use getClassName() instead', E_USER_DEPRECATED);
329
-
330
-
return$this->getClassName();
331
-
}
332
-
333
-
/**
334
-
* Returns the property name of the current node.
335
-
*
336
-
* @return string|null The property name or null, if the current node does
337
-
* not hold information about a property.
338
-
*
339
-
* @see getPropertyName
340
-
*
341
-
* @deprecated Deprecated since version 2.2, to be removed in 2.3. Use
342
-
* {@link getClassName} instead.
343
-
*/
344
-
publicfunctiongetCurrentProperty()
345
-
{
346
-
trigger_error('getCurrentProperty() is deprecated since version 2.2 and will be removed in 2.3. Use getClassName() instead', E_USER_DEPRECATED);
347
-
348
-
return$this->getPropertyName();
349
-
}
350
-
351
-
/**
352
-
* Returns the currently validated value.
353
-
*
354
-
* @return mixed The current value.
355
-
*
356
-
* @see getValue
357
-
*
358
-
* @deprecated Deprecated since version 2.2, to be removed in 2.3. Use
359
-
* {@link getValue} instead.
360
-
*/
361
-
publicfunctiongetCurrentValue()
362
-
{
363
-
trigger_error('getCurrentValue() is deprecated since version 2.2 and will be removed in 2.3. Use getValue() instead', E_USER_DEPRECATED);
364
-
365
-
return$this->value;
366
-
}
367
-
368
-
/**
369
-
* Returns the graph walker instance.
370
-
*
371
-
* @return GraphWalker The graph walker.
372
-
*
373
-
* @deprecated Deprecated since version 2.2, to be removed in 2.3. Use
374
-
* {@link validate} and {@link validateValue} instead.
375
-
*/
376
-
publicfunctiongetGraphWalker()
377
-
{
378
-
trigger_error('getGraphWalker() is deprecated since version 2.2 and will be removed in 2.3. Use validate() and validateValue() instead', E_USER_DEPRECATED);
0 commit comments