By claudiu.cristea on
Change record status:
Published (View all published change records)
Project:
Introduced in branch:
8.7.x
Introduced in version:
8.7.0
Issue links:
Description:
Before
drupal_set_time_limit(240);
file_upload_max_size();
After
use Drupal\Component\Utility\Environment;
Environment::setTimeLimit(240);
Environment::getUploadMaxSize();
Impacts:
Module developers