Skip to content
This repository was archived by the owner on Sep 6, 2024. It is now read-only.

Commit 2a6cf20

Browse files
committed
Fix some PhpDocs
Reviewers: #[t]_forgetit-dev, dkd-ebert Reviewed By: #[t]_forgetit-dev, dkd-ebert Differential Revision: https://phabricator.dkd.de/D1461
1 parent 0fd97db commit 2a6cf20

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/Converter/Types/Definitions/TypeMutabilityInterfaceConverter.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@
1616
use Dkd\PhpCmis\Exception\CmisInvalidArgumentException;
1717

1818
/**
19-
* Convert a Type Mutability Object to a string representation
19+
* Convert a Type Mutability Object to a array representation
2020
*/
2121
class TypeMutabilityInterfaceConverter implements TypeConverterInterface
2222
{
2323
/**
2424
* Convert given object to a scalar representation or an array of scalar values.
2525
*
26-
* @param $object
27-
* @return string[] Array / Scalar representation of object
26+
* @param TypeMutabilityInterface $object
27+
* @return boolean[] Array representation of object
2828
* @throws CmisInvalidArgumentException thrown if given object does not implement expected TypeMutabilityInterface
2929
*/
3030
public static function convertToSimpleType($object)

src/Converter/Types/Dkd/Enumeration/EnumerationConverter.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ class EnumerationConverter implements TypeConverterInterface
2222
/**
2323
* Convert given object to a scalar representation or an array of scalar values.
2424
*
25-
* @param $object
26-
* @return string Array / Scalar representation of object
25+
* @param Enumeration $object
26+
* @return string String representation of Enumeration value
2727
* @throws CmisInvalidArgumentException is thrown if given object does not implement expected Enumeration interface
2828
*/
2929
public static function convertToSimpleType($object)

0 commit comments

Comments
 (0)