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 (#15)
by
unknown
09:58
created
src/Bindings/Browser/VersioningService.php 2 patches
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
      * @param string $repositoryId the identifier for the repository
32 32
      * @param string $objectId the identifier for the PWC
33 33
      * @param ExtensionDataInterface|null $extension
34
-	 * @return ObjectDataInterface|null
34
+	 * @return null|\Dkd\PhpCmis\DataObjects\ObjectData
35 35
      */
36 36
     public function cancelCheckOut($repositoryId, $objectId, ExtensionDataInterface $extension = null)
37 37
     {
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
      * @param AclInterface|null $addAces a list of ACEs that must be added to the newly created document object
65 65
      * @param AclInterface|null $removeAces a list of ACEs that must be removed from the newly created document object
66 66
      * @param ExtensionDataInterface|null $extension
67
-	 * @return ObjectDataInterface|null
67
+	 * @return null|\Dkd\PhpCmis\DataObjects\ObjectData
68 68
      */
69 69
     public function checkIn(
70 70
         $repositoryId,
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
      * @param ExtensionDataInterface|null $extension
135 135
      * @param boolean|null $contentCopied output: indicator if the content of the original
136 136
      *      document has been copied to the PWC
137
-	 * @return ObjectDataInterface|null
137
+	 * @return null|\Dkd\PhpCmis\DataObjects\ObjectData
138 138
      */
139 139
     public function checkOut(
140 140
         $repositoryId,
@@ -206,7 +206,7 @@  discard block
 block discarded – undo
206 206
      * @param boolean $includeAcl if <code>true</code>, then the repository must return the ACL for the object
207 207
      *      (default is <code>false</code>)
208 208
      * @param ExtensionDataInterface|null $extension
209
-     * @return ObjectDataInterface
209
+     * @return null|\Dkd\PhpCmis\DataObjects\ObjectData
210 210
      */
211 211
     public function getObjectOfLatestVersion(
212 212
         $repositoryId,
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@
 block discarded – undo
12 12
 
13 13
 use Dkd\PhpCmis\Constants;
14 14
 use Dkd\PhpCmis\Data\AclInterface;
15
-use Dkd\PhpCmis\PropertyIds;
16 15
 use GuzzleHttp\Stream\StreamInterface;
17 16
 use Dkd\PhpCmis\Data\ExtensionDataInterface;
18 17
 use Dkd\PhpCmis\Data\ObjectDataInterface;
Please login to merge, or discard this patch.
src/DataObjects/Document.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -326,7 +326,7 @@
 block discarded – undo
326 326
      *
327 327
      * @param boolean $refresh if this parameter is set to <code>true</code>, this object will be refreshed after the
328 328
      *     content stream has been deleted
329
-     * @return DocumentInterface|null the updated document, or <code>null</code> if the repository did not return
329
+     * @return null|\Dkd\PhpCmis\CmisObject\CmisObjectInterface the updated document, or <code>null</code> if the repository did not return
330 330
      *      an object ID
331 331
      */
332 332
     public function deleteContentStream($refresh = true)
Please login to merge, or discard this patch.