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 ( 55e1d8...b3923f )
by Petko
17:15 queued 03:22
created
Generator/PetkoparaFilterGenerator.php 3 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Petkopara\CrudGeneratorBundle\Generator;
4 4
 
5
-use Doctrine\Bundle\DoctrineBundle\Mapping\DisconnectedMetadataFactory;
6 5
 use Doctrine\ORM\Mapping\ClassMetadataInfo;
7 6
 use Petkopara\CrudGeneratorBundle\Command\CrudGeneratorCommand;
8 7
 use Petkopara\CrudGeneratorBundle\Generator\Guesser\MetadataGuesser;
Please login to merge, or discard this patch.
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -20,10 +20,10 @@
 block discarded – undo
20 20
     private $classPath;
21 21
     private $metadataGuesser;
22 22
 
23
-  /**
24
-   * 
25
-   * @param MetadataGuesser $guesser
26
-   */
23
+    /**
24
+     * 
25
+     * @param MetadataGuesser $guesser
26
+     */
27 27
     public function __construct(MetadataGuesser $guesser)
28 28
     {
29 29
         $this->metadataGuesser = $guesser;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@
 block discarded – undo
109 109
         // Convert type to filter widget
110 110
         foreach ($fieldsData as $fieldName => $data) {
111 111
             $fieldWidget = $this->getFilterType($fieldsData[$fieldName]['type'], $fieldName);
112
-            if ($fieldWidget!== false) {
112
+            if ($fieldWidget !== false) {
113 113
                 $fieldsResult[$fieldName]['fieldName'] = $fieldName;
114 114
                 $fieldsResult[$fieldName]['filterWidget'] = $this->getFilterType($fieldsData[$fieldName]['type'], $fieldName);
115 115
             }
Please login to merge, or discard this patch.
Generator/PetkoparaFormGenerator.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Petkopara\CrudGeneratorBundle\Generator;
4 4
 
5
-use Doctrine\Bundle\DoctrineBundle\Mapping\DisconnectedMetadataFactory;
6 5
 use Doctrine\ORM\Mapping\ClassMetadataInfo;
7 6
 use Petkopara\CrudGeneratorBundle\Generator\Guesser\MetadataGuesser;
8 7
 use RuntimeException;
Please login to merge, or discard this patch.