Resolve #2015121 "Inject various dependencies"
2 open threads
Closes #2015121
Merge request reports
Activity
added 80 commits
-
04900c3c...15ac0b4e - 77 commits from branch
project:11.x
- bbd1f47b - Inject some stuff and see what will break
- 9658179b - add parameters of DisplayPluginBase::__construct() to child classes
- 4324a2fa - phpcbf corrections
Toggle commit list-
04900c3c...15ac0b4e - 77 commits from branch
added 1 commit
- 6f9040f0 - add parameters of PathPluginBase::__construct() to child classes
added 106 commits
-
6f9040f0...9c618223 - 101 commits from branch
project:11.x
- 6df96f5f - Inject some stuff and see what will break
- c618be56 - add parameters of DisplayPluginBase::__construct() to child classes
- 8b55b927 - phpcbf corrections
- 9ed3b178 - add parameters of PathPluginBase::__construct() to child classes
- d7e91497 - fix more tests
Toggle commit list-
6f9040f0...9c618223 - 101 commits from branch
added 1 commit
- 939a1e7c - fix phpstan errors, cleanup test class properties
added 144 commits
-
939a1e7c...6d9a73fe - 135 commits from branch
project:11.x
- aa92dd03 - Inject some stuff and see what will break
- 9eec51a6 - add parameters of DisplayPluginBase::__construct() to child classes
- 2b2adf13 - phpcbf corrections
- 509a770d - add parameters of PathPluginBase::__construct() to child classes
- 2b364899 - fix more tests
- 744dab07 - fix phpcs error
- 9630b62d - fix phpstan errors, cleanup test class properties
- 4d2aaa12 - inject plugin.manager.views.query service
- df5079d4 - mock services properly
Toggle commit list-
939a1e7c...6d9a73fe - 135 commits from branch
added 19 commits
-
4b4d1bff...db681552 - 6 commits from branch
project:11.x
- db681552...9aafd553 - 3 earlier commits
- d66a7131 - add parameters of PathPluginBase::__construct() to child classes
- 298cd5fc - fix more tests
- 6d9956bd - fix phpcs error
- f1fc16e4 - fix phpstan errors, cleanup test class properties
- 124694e3 - inject plugin.manager.views.query service
- 3ef42119 - mock services properly
- 0c20fed3 - fix lint errors
- 94e07aad - fix lint errors
- 3d2eca3a - fix unit tests errors
- 710ee32f - add DependencySerializationTrait
Toggle commit list-
4b4d1bff...db681552 - 6 commits from branch
- Resolved by dimitriskr
- Resolved by dimitriskr
added 553 commits
-
25464c97...29bebc73 - 538 commits from branch
project:11.x
- 29bebc73...df8c0d72 - 5 earlier commits
- c25f368e - fix phpcs error
- d1927beb - fix phpstan errors, cleanup test class properties
- f057d971 - inject plugin.manager.views.query service
- e1cdcf9a - mock services properly
- 62a15992 - fix lint errors
- d9c0d65d - fix lint errors
- 54548fd3 - fix unit tests errors
- c4178727 - add DependencySerializationTrait
- 5bb103fb - add BC layer
- cdbf65c9 - switch to CR lnk
Toggle commit list-
25464c97...29bebc73 - 538 commits from branch
- Resolved by dimitriskr
- Resolved by dimitriskr
- Resolved by dimitriskr
- Resolved by dimitriskr
- Resolved by dimitriskr
- Resolved by dimitriskr
- Resolved by dimitriskr
- Resolved by dimitriskr
- Resolved by dimitriskr
- Resolved by dimitriskr
- Resolved by dimitriskr
- Resolved by dimitriskr
- Resolved by dimitriskr
- Resolved by dimitriskr
added 1007 commits
-
f71331fb...8afbe179 - 991 commits from branch
project:11.x
- 8afbe179...77768f98 - 6 earlier commits
- 507931ed - fix phpstan errors, cleanup test class properties
- 0ca0cc78 - inject plugin.manager.views.query service
- 5f8268fa - mock services properly
- 0c6b4f90 - fix lint errors
- e5467afa - fix lint errors
- 4251d93b - fix unit tests errors
- fe5f76bb - add DependencySerializationTrait
- c121782e - add BC layer
- c3c69bf0 - switch to CR lnk
- 2bf6f77c - switch to constructor property promotion
Toggle commit list-
f71331fb...8afbe179 - 991 commits from branch
added 1 commit
- 770ea998 - remove constructor docs and add constructor property promotion
added 242 commits
-
1fec65f6...a2a38c79 - 218 commits from branch
project:11.x
- a2a38c79...d5a24b80 - 14 earlier commits
- 7786bab0 - switch to CR lnk
- 86d56a46 - switch to constructor property promotion
- 1973d16c - fix phpcs issues
- 232a0a9f - replace deprecated getMockForAbstractClass() with getMock(). See #3459746
- 0167a149 - fix rebase mistake
- a511a5ab - remove constructor docs and add constructor property promotion
- bd2fa788 - bring back constructor docs
- 4343519f - update drupal deprecation/removal versions
- 85f80291 - update drupal deprecation/removal versions
- 074e90c5 - remove phpstan ignoreError - rebase fault
Toggle commit list-
1fec65f6...a2a38c79 - 218 commits from branch
- Resolved by dimitriskr
- Resolved by dimitriskr
- Resolved by dimitriskr
68 * @param \Drupal\views\Plugin\ViewsPluginManager|null $rowPluginManager 69 * The plugin manager for views row plugins. 70 * @param \Drupal\views\Plugin\ViewsPluginManager|null $stylePluginManager 71 * The plugin manager for views style plugins. 72 * @param \Drupal\views\Plugin\ViewsPluginManager|null $queryPluginManager 73 * The plugin manager for views query plugins. 54 74 */ 55 public function __construct(array $configuration, $plugin_id, $plugin_definition, RouteProviderInterface $route_provider, StateInterface $state) { 56 parent::__construct($configuration, $plugin_id, $plugin_definition); 75 public function __construct( 76 array $configuration, 77 $plugin_id, 78 $plugin_definition, 79 RouteProviderInterface $route_provider, 80 StateInterface $state, 81 protected ?ViewsData $viewsData = NULL, 97 * @param \Drupal\views\Plugin\ViewsPluginManager|null $queryPluginManager 98 * The plugin manager for views query plugins. 79 99 */ 80 public function __construct(array $configuration, $plugin_id, $plugin_definition, RouteProviderInterface $route_provider, StateInterface $state, EntityStorageInterface $menu_storage, MenuParentFormSelectorInterface $parent_form_selector) { 81 parent::__construct($configuration, $plugin_id, $plugin_definition, $route_provider, $state); 100 public function __construct( 101 array $configuration, 102 $plugin_id, 103 $plugin_definition, 104 RouteProviderInterface $route_provider, 105 StateInterface $state, 106 EntityStorageInterface $menu_storage, 107 MenuParentFormSelectorInterface $parent_form_selector, 108 protected ?ViewsData $viewsData = NULL, 109 protected ?ViewsPluginManager $accessPluginManager = NULL, 110 protected ?ViewsPluginManager $cachePluginManager = NULL, added 198 commits
-
2716a17b...68bf822f - 173 commits from branch
project:11.x
- 68bf822f...27125581 - 15 earlier commits
- 72b79f18 - switch to constructor property promotion
- 37e5265a - fix phpcs issues
- 1933e34f - replace deprecated getMockForAbstractClass() with getMock(). See #3459746
- 34125550 - fix rebase mistake
- 05734c32 - remove constructor docs and add constructor property promotion
- 862dec69 - bring back constructor docs
- 123d65dc - update drupal deprecation/removal versions
- acda3a14 - update drupal deprecation/removal versions
- 2d88006e - remove phpstan ignoreError - rebase fault
- ec67873d - typehint class properties
Toggle commit list-
2716a17b...68bf822f - 173 commits from branch
Please register or sign in to reply