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
Branch master (4c7938)
by TMSolution
08:55
created
DependencyInjection/TMSolutionCronExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
         $configuration = new Configuration();
23 23
         $config = $this->processConfiguration($configuration, $configs);
24 24
 
25
-        $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
25
+        $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
26 26
         $loader->load('services.yml');
27 27
     }
28 28
 }
Please login to merge, or discard this patch.
Repository/CronTaskRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
                         ->getOneOrNullResult();
27 27
     }
28 28
     
29
-    public function getNewTasks($maxResult=10)
29
+    public function getNewTasks($maxResult = 10)
30 30
     {
31 31
         return $this->createQueryBuilder('ct')
32 32
                         ->where('ct.firstRun <= :currentDate')
Please login to merge, or discard this patch.
Command/CronTaskRunCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
             try {
54 54
                 $crontasks = $this->em->getRepository('TMSolutionCronBundle:CronTask')->getNewTasks(20);
55 55
 
56
-                foreach($crontasks as $crontask) {
56
+                foreach ($crontasks as $crontask) {
57 57
                     if ($crontask) {
58 58
 
59 59
 
Please login to merge, or discard this patch.