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
@@ -237,9 +243,13 @@ public function setFormat(string $format)
237
243
* Sets the redraw frequency.
238
244
*
239
245
* @param int|float $freq The frequency in steps
246
+
*
247
+
* @deprecated since version 4.1, to be removed in 5.0. Use $redrawFrequency argument in constructor instead.
240
248
*/
241
249
publicfunctionsetRedrawFrequency(int$freq)
242
250
{
251
+
@trigger_error(sprintf('The %s() method is deprecated since Symfony 4.1 and will be removed in 5.0. Use $redrawFrequency argument in constructor instead.', __METHOD__), E_USER_DEPRECATED);
252
+
243
253
$this->redrawFreq = max($freq, 1);
244
254
}
245
255
@@ -291,7 +301,12 @@ public function setProgress(int $step)
* @expectedDeprecation The Symfony\Component\Console\Helper\ProgressBar::setRedrawFrequency() method is deprecated since Symfony 4.1 and will be removed in 5.0. Use $redrawFrequency argument in constructor instead.
0 commit comments