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
Pull Request — master (#54)
by
unknown
03:00
created
lib/Core/Persistence/FieldHandler/Custom/TimeFieldHandler.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,11 +4,11 @@
 block discarded – undo
4 4
 
5 5
 namespace Netgen\InformationCollection\Core\Persistence\FieldHandler\Custom;
6 6
 
7
+use Netgen\InformationCollection\API\FieldHandler\CustomLegacyFieldHandlerInterface;
8
+use Netgen\InformationCollection\API\Value\Legacy\FieldValue;
7 9
 use eZ\Publish\API\Repository\Values\ContentType\FieldDefinition;
8 10
 use eZ\Publish\Core\FieldType\Time\Value as TimeValue;
9 11
 use eZ\Publish\Core\FieldType\Value;
10
-use Netgen\InformationCollection\API\FieldHandler\CustomLegacyFieldHandlerInterface;
11
-use Netgen\InformationCollection\API\Value\Legacy\FieldValue;
12 12
 
13 13
 class TimeFieldHandler implements CustomLegacyFieldHandlerInterface
14 14
 {
Please login to merge, or discard this patch.
lib/Doctrine/Repository/EzInfoCollectionAttributeRepository.php 2 patches
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -123,6 +123,10 @@
 block discarded – undo
123 123
         }
124 124
     }
125 125
 
126
+    /**
127
+     * @param integer $contentId
128
+     * @param string $searchText
129
+     */
126 130
     public function search($contentId, $searchText)
127 131
     {
128 132
         $searchText = mb_strtolower($searchText);
Please login to merge, or discard this patch.
Unused Use Statements   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -5,18 +5,17 @@
 block discarded – undo
5 5
 namespace Netgen\InformationCollection\Doctrine\Repository;
6 6
 
7 7
 use Doctrine\ORM\EntityRepository;
8
-use Doctrine\ORM\NonUniqueResultException;
9 8
 use Doctrine\ORM\NoResultException;
10 9
 use Doctrine\ORM\ORMException;
11 10
 use Doctrine\ORM\ORMInvalidArgumentException;
12
-use eZ\Publish\API\Repository\Values\Content\Content;
13
-use eZ\Publish\API\Repository\Values\Content\Field;
14 11
 use Netgen\InformationCollection\API\Exception\RemoveAttributeFailedException;
15 12
 use Netgen\InformationCollection\API\Exception\RetrieveCountException;
16 13
 use Netgen\InformationCollection\API\Exception\StoringAttributeFailedException;
17 14
 use Netgen\InformationCollection\API\Value\Legacy\FieldValue;
18 15
 use Netgen\InformationCollection\Doctrine\Entity\EzInfoCollection;
19 16
 use Netgen\InformationCollection\Doctrine\Entity\EzInfoCollectionAttribute;
17
+use eZ\Publish\API\Repository\Values\Content\Content;
18
+use eZ\Publish\API\Repository\Values\Content\Field;
20 19
 
21 20
 class EzInfoCollectionAttributeRepository extends EntityRepository
22 21
 {
Please login to merge, or discard this patch.
lib/Doctrine/Repository/EzInfoCollectionRepository.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -142,6 +142,9 @@
 block discarded – undo
142 142
             ->getResult();
143 143
     }
144 144
 
145
+    /**
146
+     * @param integer $contentId
147
+     */
145 148
     public function getChildrenCount($contentId)
146 149
     {
147 150
         try {
Please login to merge, or discard this patch.
Unused Use Statements   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -6,16 +6,14 @@
 block discarded – undo
6 6
 
7 7
 use DateTimeImmutable;
8 8
 use Doctrine\ORM\EntityRepository;
9
-use Doctrine\ORM\NonUniqueResultException;
10 9
 use Doctrine\ORM\NoResultException;
11
-use Doctrine\ORM\ORMException;
12 10
 use Doctrine\ORM\ORMInvalidArgumentException;
13
-use eZ\Publish\API\Repository\Values\Content\Content;
14
-use eZ\Publish\API\Repository\Values\User\User;
15 11
 use Netgen\InformationCollection\API\Exception\RemoveCollectionFailedException;
16 12
 use Netgen\InformationCollection\API\Exception\RetrieveCountException;
17 13
 use Netgen\InformationCollection\API\Exception\StoringCollectionFailedException;
18 14
 use Netgen\InformationCollection\Doctrine\Entity\EzInfoCollection;
15
+use eZ\Publish\API\Repository\Values\Content\Content;
16
+use eZ\Publish\API\Repository\Values\User\User;
19 17
 
20 18
 class EzInfoCollectionRepository extends EntityRepository
21 19
 {
Please login to merge, or discard this patch.