Update to drupal 8.0.0-rc1. For more information, see https://www.drupal.org/node/2582663
This commit is contained in:
parent
eb34d130a8
commit
f32e58e4b1
8476 changed files with 211648 additions and 170042 deletions
core/lib/Drupal/Core/DependencyInjection/Compiler
|
@ -2,7 +2,7 @@
|
|||
|
||||
/**
|
||||
* @file
|
||||
* Contains \Drupal\Core\DependencyInjection\Compiler\RegisterKernelListenersPass.
|
||||
* Contains \Drupal\Core\DependencyInjection\Compiler\RegisterEventSubscribersPass.
|
||||
*/
|
||||
|
||||
namespace Drupal\Core\DependencyInjection\Compiler;
|
||||
|
@ -10,7 +10,10 @@ namespace Drupal\Core\DependencyInjection\Compiler;
|
|||
use Symfony\Component\DependencyInjection\ContainerBuilder;
|
||||
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
|
||||
|
||||
class RegisterKernelListenersPass implements CompilerPassInterface {
|
||||
/**
|
||||
* Registers all event subscribers to the event dispatcher.
|
||||
*/
|
||||
class RegisterEventSubscribersPass implements CompilerPassInterface {
|
||||
public function process(ContainerBuilder $container) {
|
||||
if (!$container->hasDefinition('event_dispatcher')) {
|
||||
return;
|
Reference in a new issue