By cmlara on
Change record status:
Published (View all published change records)
Project:
Introduced in branch:
11.3.x
Introduced in version:
11.3.0
Issue links:
Description:
FileSystemInterface::basename() has been deprecated and will be removed in Drupal 13.
Use the PHP native basename() function as a replacement.
- \Drupal::service('file_system')->basename($path);
+ basename($path);
Impacts:
Module developers