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 (#44)
by Claus
14:25 queued 04:58
created
src/Bindings/Browser/ObjectService.php 1 patch
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -835,7 +835,7 @@  discard block
 block discarded – undo
835 835
      * @param integer $skipCount number of potential results that the repository MUST skip/page over before
836 836
      *      returning any results (default is 0)
837 837
      * @param ExtensionDataInterface|null $extension
838
-     * @return RenditionDataInterface[]
838
+     * @return \Dkd\PhpCmis\DataObjects\RenditionData[]
839 839
      * @throws CmisInvalidArgumentException If object id is empty or skip count not of type integer
840 840
      */
841 841
     public function getRenditions(
@@ -879,7 +879,7 @@  discard block
 block discarded – undo
879 879
      * @param string $targetFolderId the identifier for the target folder
880 880
      * @param string $sourceFolderId the identifier for the source folder
881 881
      * @param ExtensionDataInterface|null $extension
882
-     * @return ObjectDataInterface|null Returns object of type ObjectDataInterface or <code>null</code>
882
+     * @return null|\Dkd\PhpCmis\DataObjects\ObjectData Returns object of type ObjectDataInterface or <code>null</code>
883 883
      *     if the repository response was empty
884 884
      */
885 885
     public function moveObject(
@@ -1025,7 +1025,7 @@  discard block
 block discarded – undo
1025 1025
     /**
1026 1026
      * @param string $identifier
1027 1027
      * @param mixed $additionalHashValues
1028
-     * @return array
1028
+     * @return string[]
1029 1029
      */
1030 1030
     protected function createCacheKey($identifier, $additionalHashValues)
1031 1031
     {
@@ -1038,7 +1038,7 @@  discard block
 block discarded – undo
1038 1038
     /**
1039 1039
      * Returns TRUE if an object with cache key $identifier is currently cached.
1040 1040
      *
1041
-     * @param array $identifier
1041
+     * @param string[] $identifier
1042 1042
      * @return boolean
1043 1043
      */
1044 1044
     protected function isCached(array $identifier)
@@ -1049,7 +1049,7 @@  discard block
 block discarded – undo
1049 1049
     /**
1050 1050
      * Gets the cached object with cache key $identifier.
1051 1051
      *
1052
-     * @param string $identifier
1052
+     * @param string[] $identifier
1053 1053
      * @return mixed
1054 1054
      */
1055 1055
     protected function getCached(array $identifier)
@@ -1060,7 +1060,7 @@  discard block
 block discarded – undo
1060 1060
 	/**
1061 1061
      * Gets the cached object with cache key $identifier.
1062 1062
      *
1063
-     * @param string $identifier
1063
+     * @param string[] $identifier
1064 1064
      * @param mixed $object
1065 1065
      * @return mixed
1066 1066
      */
Please login to merge, or discard this patch.
src/Converter/JsonConverter.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -423,7 +423,7 @@  discard block
 block discarded – undo
423 423
     }
424 424
 
425 425
     /**
426
-     * @param array|null $data
426
+     * @param RepositoryCapabilities|null $data
427 427
      * @return AclCapabilities|null
428 428
      */
429 429
     public function convertAclCapabilities(array $data = null)
@@ -503,7 +503,7 @@  discard block
 block discarded – undo
503 503
      * Convert an array to a type definition object
504 504
      *
505 505
      * @param array|null $data
506
-     * @return AbstractTypeDefinition|null
506
+     * @return TypeDefinitionInterface
507 507
      * @throws CmisInvalidArgumentException
508 508
      */
509 509
     public function convertTypeDefinition(array $data = null)
@@ -1470,7 +1470,7 @@  discard block
 block discarded – undo
1470 1470
      * Convert given input data to a TypeChildren object
1471 1471
      *
1472 1472
      * @param array|null $data
1473
-     * @return TypeDefinitionListInterface|null Returns a TypeDefinitionListInterface object or <code>null</code>
1473
+     * @return null|TypeDefinitionList Returns a TypeDefinitionListInterface object or <code>null</code>
1474 1474
      *      if empty data is given.
1475 1475
      */
1476 1476
     public function convertTypeChildren(array $data = null)
Please login to merge, or discard this patch.