Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 2 |
| ActionPluginCollection | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 2 |
| get | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 2 |
|||
| <?php | |
| /** | |
| * @file | |
| * Contains \Drupal\Core\Action\ActionPluginCollection. | |
| */ | |
| namespace Drupal\Core\Action; | |
| use Drupal\Core\Plugin\DefaultSingleLazyPluginCollection; | |
| /** | |
| * Provides a container for lazily loading Action plugins. | |
| */ | |
| class ActionPluginCollection extends DefaultSingleLazyPluginCollection { | |
| /** | |
| * {@inheritdoc} | |
| * | |
| * @return \Drupal\Core\Action\ActionInterface | |
| */ | |
| public function &get($instance_id) { | |
| return parent::get($instance_id); | |
| } | |
| } |