Change record status: 
Project: 
Introduced in branch: 
11.3.x
Introduced in version: 
11.3.0
Description: 

The toolkitId property in ImageFactory is no longer initialized in the constructor but instead only when accessed.

Subclasses should call getToolkitId():

Before:

$this->toolkitId

After:

$this->getToolkitId()

The getToolkitId() method has existed since Drupal 8.0.

Impacts: 
Module developers