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.
Passed
Push — master ( 376bad...e87a3d )
by Petko
02:58
created
Tests/Generator/TritonFormGeneratorTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
             'createdAt' => array('type' => 'date'),
70 70
             'publishedAt' => array('type' => 'time'),
71 71
             'updatedAt' => array('type' => 'datetime'),
72
-            'parent' => array('type' => ClassMetadataInfo::MANY_TO_ONE, 'isOwningSide'=> true ,'targetEntity' => 'FooBundle\Entity\Parent'),
72
+            'parent' => array('type' => ClassMetadataInfo::MANY_TO_ONE, 'isOwningSide'=> true, 'targetEntity' => 'FooBundle\Entity\Parent'),
73 73
         );
74 74
         $metadata->fieldNames = array(
75 75
             'title' => 'title',
Please login to merge, or discard this patch.
Generator/PetkoparaFilterGenerator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@
 block discarded – undo
108 108
         // Convert type to filter widget
109 109
         foreach ($fieldsData as $fieldName => $data) {
110 110
             $fieldWidget = $this->getFilterType($fieldsData[$fieldName]['type']);
111
-            if ($fieldWidget!== false) {
111
+            if ($fieldWidget !== false) {
112 112
                 $fieldsResult[$fieldName]['fieldName'] = $fieldName;
113 113
                 $fieldsResult[$fieldName]['filterWidget'] = $this->getFilterType($fieldsData[$fieldName]['type'], $fieldName);
114 114
             }
Please login to merge, or discard this patch.