Completed
Push — master ( c209a2...8b3986 )
by
unknown
25s queued 10s
created
Yves/Storage/Plugin/EventDispatcher/StorageCacheEventDispatcherPlugin.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
      */
29 29
     public function extend(EventDispatcherInterface $eventDispatcher, ContainerInterface $container): EventDispatcherInterface
30 30
     {
31
-        $eventDispatcher->addListener(KernelEvents::TERMINATE, function (PostResponseEvent $postResponseEvent) use ($container) {
31
+        $eventDispatcher->addListener(KernelEvents::TERMINATE, function(PostResponseEvent $postResponseEvent) use ($container) {
32 32
             if ($container->has(StorageConstants::STORAGE_CACHE_STRATEGY)) {
33 33
                 $request = $postResponseEvent->getRequest();
34 34
                 $this->getClient()->persistCacheForRequest($request, $container->get(StorageConstants::STORAGE_CACHE_STRATEGY));
Please login to merge, or discard this patch.
Communication/Plugin/EventDispatcher/AuthorizationEventDispatcherPlugin.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
      */
38 38
     public function extend(EventDispatcherInterface $eventDispatcher, ContainerInterface $container): EventDispatcherInterface
39 39
     {
40
-        $eventDispatcher->addListener(KernelEvents::REQUEST, function (GetResponseEvent $event) {
40
+        $eventDispatcher->addListener(KernelEvents::REQUEST, function(GetResponseEvent $event) {
41 41
             return $this->onKernelRequest($event);
42 42
         });
43 43
 
Please login to merge, or discard this patch.
Communication/Plugin/EventDispatcher/AccessControlEventDispatcherPlugin.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
      */
37 37
     public function extend(EventDispatcherInterface $eventDispatcher, ContainerInterface $container): EventDispatcherInterface
38 38
     {
39
-        $eventDispatcher->addListener(KernelEvents::REQUEST, function (GetResponseEvent $event): GetResponseEvent {
39
+        $eventDispatcher->addListener(KernelEvents::REQUEST, function(GetResponseEvent $event): GetResponseEvent {
40 40
             return $this->onKernelRequest($event);
41 41
         });
42 42
 
Please login to merge, or discard this patch.
Plugin/EventDispatcher/RedirectAfterLoginEventDispatcherPlugin.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
      */
43 43
     public function extend(EventDispatcherInterface $eventDispatcher, ContainerInterface $container): EventDispatcherInterface
44 44
     {
45
-        $eventDispatcher->addListener(KernelEvents::RESPONSE, function (FilterResponseEvent $event) {
45
+        $eventDispatcher->addListener(KernelEvents::RESPONSE, function(FilterResponseEvent $event) {
46 46
             return $this->onKernelResponse($event);
47 47
         });
48 48
 
Please login to merge, or discard this patch.
Plugin/EventDispatcher/GatewayControllerEventDispatcherPlugin.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,11 +37,11 @@
 block discarded – undo
37 37
      */
38 38
     public function extend(EventDispatcherInterface $eventDispatcher, ContainerInterface $container): EventDispatcherInterface
39 39
     {
40
-        $eventDispatcher->addListener(KernelEvents::CONTROLLER, function (FilterControllerEvent $event) {
40
+        $eventDispatcher->addListener(KernelEvents::CONTROLLER, function(FilterControllerEvent $event) {
41 41
             return $this->getFactory()->createControllerListener()->onKernelController($event);
42 42
         });
43 43
 
44
-        $eventDispatcher->addListener(KernelEvents::REQUEST, function (GetResponseEvent $event): void {
44
+        $eventDispatcher->addListener(KernelEvents::REQUEST, function(GetResponseEvent $event): void {
45 45
             TransferServer::getInstance()->setRequest($event->getRequest());
46 46
         });
47 47
 
Please login to merge, or discard this patch.
Yves/Kernel/Plugin/EventDispatcher/AutoloaderCacheEventDispatcherPlugin.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
      */
30 30
     public function extend(EventDispatcherInterface $eventDispatcher, ContainerInterface $container): EventDispatcherInterface
31 31
     {
32
-        $eventDispatcher->addListener(KernelEvents::TERMINATE, function () {
32
+        $eventDispatcher->addListener(KernelEvents::TERMINATE, function() {
33 33
             $this->persistClassResolverCache();
34 34
         });
35 35
 
Please login to merge, or discard this patch.