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
Entity/CronTask.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -265,7 +265,7 @@  discard block
 block discarded – undo
265 265
     /**
266 266
      * Get disabled
267 267
      *
268
-     * @return boolean 
268
+     * @return integer 
269 269
      */
270 270
     public function getDisabled()
271 271
     {
@@ -311,7 +311,7 @@  discard block
 block discarded – undo
311 311
     /**
312 312
      * Get used
313 313
      *
314
-     * @return boolean 
314
+     * @return integer 
315 315
      */
316 316
     public function getUsed()
317 317
     {
Please login to merge, or discard this patch.
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.
Tests/Entity/CronTaskTest.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
      */
38 38
     public function testSetName()
39 39
     {
40
-       $this->assertTrue(true);    
40
+        $this->assertTrue(true);    
41 41
     }
42 42
     
43 43
     /**
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
      */
54 54
     public function testSetCommands()
55 55
     {
56
-       $this->assertTrue(true);    
56
+        $this->assertTrue(true);    
57 57
     }
58 58
     
59 59
     /**
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
      */
70 70
     public function testSetRepeatable()
71 71
     {
72
-       $this->assertTrue(true);    
72
+        $this->assertTrue(true);    
73 73
     }
74 74
     
75 75
     /**
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
      */
86 86
     public function testSetInterval()
87 87
     {
88
-       $this->assertTrue(true);    
88
+        $this->assertTrue(true);    
89 89
     }
90 90
     
91 91
     /**
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
      */
102 102
     public function testSetFirstRun()
103 103
     {
104
-       $this->assertTrue(true);    
104
+        $this->assertTrue(true);    
105 105
     }
106 106
     
107 107
     /**
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
      */
118 118
     public function testSetRunDate()
119 119
     {
120
-       $this->assertTrue(true);    
120
+        $this->assertTrue(true);    
121 121
     }
122 122
     
123 123
     /**
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
      */
134 134
     public function testSetUsed()
135 135
     {
136
-       $this->assertTrue(true);    
136
+        $this->assertTrue(true);    
137 137
     }
138 138
     
139 139
     /**
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
      */
150 150
     public function testSetSuccess()
151 151
     {
152
-       $this->assertTrue(true);    
152
+        $this->assertTrue(true);    
153 153
     }
154 154
     
155 155
     /**
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
      */
166 166
     public function testSetDisabled()
167 167
     {
168
-       $this->assertTrue(true);    
168
+        $this->assertTrue(true);    
169 169
     }
170 170
     
171 171
     /**
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
      */
182 182
     public function testSetExecType()
183 183
     {
184
-       $this->assertTrue(true);    
184
+        $this->assertTrue(true);    
185 185
     }
186 186
 
187 187
 }
188 188
\ No newline at end of file
Please login to merge, or discard this patch.