@@ -31,7 +31,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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, |
@@ -12,7 +12,6 @@ |
||
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; |
@@ -326,7 +326,7 @@ |
||
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) |