Problem/Motivation
BackupMigrate.php, line 34-39:
/**
* Stores the value.
*
* @var \Drupal\backup_migrate\Core\Service\ServiceManagerTheservicelocatorforthisobject The services
*/
protected $services;
Steps to reproduce
Proposed resolution
/**
* Stores the value.
*
* @var \Drupal\backup_migrate\Core\Service\ServiceManager The services
*/
protected $services;
or
/**
* Stores the value.
*/
protected ServiceManager $services;
Remaining tasks
User interface changes
API changes
Data model changes
Issue fork backup_migrate-3610636
Show commands
Start within a Git clone of the project using the version control instructions.
Or, if you do not have SSH keys set up on git.drupalcode.org:
Comments
Comment #2
danrodComment #4
danrodThanks for this, I fixed the incorrect type hint in the MR, I'll leave it to "Needs Review" just in case anyone wants to review this, otherwise, I'll merge it to the 5.1.x branch since it's just a doc change.
Comment #5
danrodComment #6
danrodComment #7
danrodComment #9
danrod