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 ( d38d17...067126 )
by Luis Ramón
03:07
created
src/AppBundle/Entity/Agreement.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -248,7 +248,7 @@
 block discarded – undo
248 248
     /**
249 249
      * Get workTutor
250 250
      *
251
-     * @return WorkTutor
251
+     * @return Person
252 252
      */
253 253
     public function getWorkTutor()
254 254
     {
Please login to merge, or discard this patch.
src/AppBundle/Controller/AdminController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
             ['size' => '4', 'sort_field' => 'p.lastName', 'name' => 'form.last_name'],
171 171
             ['size' => '5', 'sort_field' => 'w.company', 'name' => 'form.company']
172 172
         ],
173
-        'data_columns' => ['person', 'company',]
173
+        'data_columns' => ['person', 'company', ]
174 174
     ];
175 175
 
176 176
     /**
@@ -274,7 +274,7 @@  discard block
 block discarded – undo
274 274
                 $this->getDoctrine()->getManager()->flush();
275 275
                 $this->addFlash('success', $this->get('translator')->trans('alert.deleted', [], $entityData['entity']));
276 276
             }
277
-            catch(\Exception $e) {
277
+            catch (\Exception $e) {
278 278
                 $this->addFlash('error', $this->get('translator')->trans('alert.not_deleted', [], $entityData['entity']));
279 279
             }
280 280
             return $this->redirectToRoute('admin_' . $entityData['entity']);
Please login to merge, or discard this patch.