GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( f38fe1...5e4d8b )
by Yann
7s
created
src/Knp/Rad/DomainEvent/DependencyInjection/DomainEventExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 {
12 12
     public function load(array $config, ContainerBuilder $container)
13 13
     {
14
-        $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
14
+        $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
15 15
         $loader->load('services.xml');
16 16
     }
17 17
 }
Please login to merge, or discard this patch.
src/Knp/Rad/DomainEvent/Dispatcher/Delayed.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
 
44 44
     private function prepareEventNames(array $events)
45 45
     {
46
-        return array_map(function ($element) {
46
+        return array_map(function($element) {
47 47
             return sprintf('on%s', $element);
48 48
         }, $events);
49 49
     }
Please login to merge, or discard this patch.