protected ImageStyle::getStreamWrapperManager()
Gets the stream wrapper manager service.
@todo Properly inject this service in Drupal 9.0.x.
Return value
\Drupal\Core\StreamWrapper\StreamWrapperManagerInterface The stream wrapper manager service
File
- core/modules/image/src/Entity/ImageStyle.php, line 519
Class
- ImageStyle
- Defines an image style configuration entity.
Namespace
Drupal\image\Entity
Code
1 2 3 | protected function getStreamWrapperManager() { return \Drupal::service( 'stream_wrapper_manager' ); } |
Please login to continue.