Skip to content
Snippets Groups Projects

Drupal 10 & 11 compatibility

Closes #3493996

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
15 18 * destination_module="acl",
16 19 * )
17 20 */
18 class AclList extends DestinationBase implements MigrateDestinationInterface {
21 class AclList extends DestinationBase implements MigrateDestinationInterface, ContainerFactoryPluginInterface {
22 /**
23 * The database connection.
24 *
25 * @var \Drupal\Core\Database\Connection
26 */
27 protected $connection;
  • 15 18 * destination_module="acl",
    16 19 * )
    17 20 */
    18 class AclTable extends DestinationBase implements MigrateDestinationInterface {
    21 class AclTable extends DestinationBase implements MigrateDestinationInterface, ContainerFactoryPluginInterface {
    22
    23 /**
    24 * The database connection.
    25 *
    26 * @var \Drupal\Core\Database\Connection
    27 */
    28 protected $connection;
  • 15 18 * destination_module="acl",
    16 19 * )
    17 20 */
    18 class AclTable extends DestinationBase implements MigrateDestinationInterface {
    21 class AclTable extends DestinationBase implements MigrateDestinationInterface, ContainerFactoryPluginInterface {
  • 1 1 {
    2 2 "name": "drupal/acl",
    3 "description": "Provides an access control list API. Has no features on its own.",
  • 15 18 * destination_module="acl",
    16 19 * )
    17 20 */
    18 class AclList extends DestinationBase implements MigrateDestinationInterface {
    21 class AclList extends DestinationBase implements MigrateDestinationInterface, ContainerFactoryPluginInterface {
  • Thanks a lot for MR.

    There are too many changes out of the issue scope: DI, ContainerFactoryPluginInterface, PHPCS, Readme, Changelog fix.

    It would be great to use property promotion everywhere, maybe create follow up task, and make it before next release. And Convert annotation to attributes.

    Otherwise LGTM and all checks are green.

    Edited by Nikolay Shapovalov
  • added 1 commit

    • 8bcb5890 - Ommit MigrateDestinationInterface since it's already implemented in DestinationBase

    Compare with previous version

  • added 1 commit

    • 84c530b6 - Use constructor property promotion

    Compare with previous version

  • added 1 commit

    Compare with previous version

  • added 1 commit

    • 5d913c64 - Cleanup tests for phpstan level 5

    Compare with previous version

  • 15 17 * destination_module="acl",
    16 18 * )
    17 19 */
    18 class AclTable extends DestinationBase implements MigrateDestinationInterface {
    20 class AclTable extends DestinationBase implements ContainerFactoryPluginInterface {
    21
    22 public function __construct(
  • Thanks, please check my feedback.

  • added 1 commit

    • 9e8c8968 - Move class properties before methods

    Compare with previous version

  • 15 17 * destination_module="acl",
    16 18 * )
    17 19 */
    18 class AclList extends DestinationBase implements MigrateDestinationInterface {
    20 class AclList extends DestinationBase implements ContainerFactoryPluginInterface {
    21
    22 public function __construct(
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Please register or sign in to reply
    Loading