@@ -540,7 +540,7 @@ public function setUp(array $options = []): bool
540540 /**
541541 * Set internal object name.
542542 *
543- * @param string| null $objectName Object name to set
543+ * @param null|string $objectName Object name to set
544544 *
545545 * @return string Object name
546546 */
@@ -853,7 +853,7 @@ public function setEvidence(string $evidence)
853853 /**
854854 * Return currently used evidence for communication.
855855 *
856- * @return string| null Current evidence
856+ * @return null|string Current evidence
857857 */
858858 public function getEvidence ()
859859 {
@@ -873,7 +873,7 @@ public function setCompany($company): void
873873 /**
874874 * Obtain company now used.
875875 *
876- * @return string| null Currently used company
876+ * @return null|string Currently used company
877877 */
878878 public function getCompany ()
879879 {
@@ -1625,7 +1625,7 @@ public function getFlexiData(string $suffix = '', $conditions = null)
16251625 /**
16261626 * Load record from AbraFlexi and store its data in the object.
16271627 *
1628- * @param array<string, mixed>|int|string|null $id ID or conditions
1628+ * @param null| array<string, mixed>|int|string $id ID or conditions
16291629 *
16301630 * @return int Number of loaded items
16311631 */
@@ -1828,10 +1828,10 @@ public function recordExists($data): bool
18281828 /**
18291829 * Return columns from AbraFlexi according to conditions.
18301830 *
1831- * @param array<string, mixed>|int|string|null $conditions Array of conditions or record ID
1832- * @param string| null $indexBy Column name to use for result keys
1831+ * @param null| array<string, mixed>|int|string $conditions Array of conditions or record ID
1832+ * @param null|string $indexBy Column name to use for result keys
18331833 *
1834- * @return array<int|string, array<string, mixed>>|null Records
1834+ * @return null| array<int|string, array<string, mixed>> Records
18351835 */
18361836 public function getAllFromAbraFlexi ($ conditions = null , $ indexBy = null )
18371837 {
@@ -1876,11 +1876,11 @@ public function getSumsFromAbraFlexi(
18761876 /**
18771877 * Return columns from AbraFlexi according to conditions.
18781878 *
1879- * @param string| array<string> $columnsList List of items or detail level: id|summary|full
1880- * @param array<string, mixed> $conditions Array of conditions or record ID
1881- * @param string| null $indexBy Column by which to index records
1879+ * @param array<string>|string $columnsList List of items or detail level: id|summary|full
1880+ * @param array<string, mixed> $conditions Array of conditions or record ID
1881+ * @param null|string $indexBy Column by which to index records
18821882 *
1883- * @return array<int|string, array<string, mixed>>|null Records
1883+ * @return null| array<int|string, array<string, mixed>> Records
18841884 */
18851885 public function getColumnsFromAbraFlexi (
18861886 $ columnsList ,
@@ -1978,7 +1978,7 @@ public function setPostFields($data): void
19781978 /**
19791979 * Get content ready to be sent as POST body.
19801980 *
1981- * @return string| null POST data
1981+ * @return null|string POST data
19821982 */
19831983 public function getPostFields ()
19841984 {
@@ -1990,7 +1990,7 @@ public function getPostFields()
19901990 *
19911991 * @see https://demo.flexibee.eu/devdoc/identifiers Record identifiers
19921992 *
1993- * @return int| null Record identifier represented by the object
1993+ * @return null|int Record identifier represented by the object
19941994 */
19951995 public function getRecordID ()
19961996 {
@@ -2006,7 +2006,7 @@ public function getRecordID()
20062006 *
20072007 * @see https://demo.flexibee.eu/devdoc/identifiers Record identifiers
20082008 *
2009- * @return string| null Record code identifier
2009+ * @return null|string Record code identifier
20102010 */
20112011 public function getRecordCode ()
20122012 {
@@ -2018,7 +2018,7 @@ public function getRecordCode()
20182018 *
20192019 * @see https://demo.flexibee.eu/devdoc/identifiers Record identifiers
20202020 *
2021- * @return int|string|null Record code identifier
2021+ * @return null| int|string Record code identifier
20222022 */
20232023 public function getRecordIdent ()
20242024 {
@@ -2130,7 +2130,7 @@ public function getExternalIDs()
21302130 *
21312131 * @see https://www.abraflexi.eu/api/dokumentace/ref/changes-api#globalVersion Global Version
21322132 *
2133- * @return int| null Global version number
2133+ * @return null|int Global version number
21342134 */
21352135 public function getGlobalVersion ()
21362136 {
@@ -2142,7 +2142,7 @@ public function getGlobalVersion()
21422142 /**
21432143 * Gives you current ApiURL with given format suffix.
21442144 *
2145- * @param string| null $format json|html|xml|...
2145+ * @param null|string $format json|html|xml|...
21462146 *
21472147 * @return string API URL for current record or object/evidence
21482148 */
@@ -2297,9 +2297,9 @@ public function getColumnsInfo($evidence = null)
22972297 * Gives you properties for (current) evidence column.
22982298 *
22992299 * @param string $column Name of column
2300- * @param string| null $evidence Evidence name if different
2300+ * @param null|string $evidence Evidence name if different
23012301 *
2302- * @return array<string, mixed>|null Column properties or null if column does not exist
2302+ * @return null| array<string, mixed> Column properties or null if column does not exist
23032303 */
23042304 public function getColumnInfo ($ column , $ evidence = null )
23052305 {
@@ -2311,9 +2311,9 @@ public function getColumnInfo($column, $evidence = null)
23112311 /**
23122312 * Obtain actions for current (or given) evidence.
23132313 *
2314- * @param string| null $evidence Evidence name
2314+ * @param null|string $evidence Evidence name
23152315 *
2316- * @return array<string, mixed>|null Evidence actions structure
2316+ * @return null| array<string, mixed> Evidence actions structure
23172317 */
23182318 public function getActionsInfo ($ evidence = null )
23192319 {
@@ -2335,9 +2335,9 @@ public function getActionsInfo($evidence = null)
23352335 /**
23362336 * Obtain relations for current (or given) evidence.
23372337 *
2338- * @param string| null $evidence Evidence name
2338+ * @param null|string $evidence Evidence name
23392339 *
2340- * @return array<string, mixed>|null Evidence relations structure
2340+ * @return null| array<string, mixed> Evidence relations structure
23412341 */
23422342 public function getRelationsInfo ($ evidence = null )
23432343 {
@@ -2386,7 +2386,7 @@ public function getEvidenceInfo(string $evidence = ''): array
23862386 /**
23872387 * Obtain name for current (or given) evidence path.
23882388 *
2389- * @param string| null $evidence Evidence name
2389+ * @param null|string $evidence Evidence name
23902390 *
23912391 * @return string Evidence name
23922392 */
@@ -2872,8 +2872,8 @@ static function ($key) {
28722872 /**
28732873 * Add info about used user, server and libraries.
28742874 *
2875- * @param string| null $prefix Banner prefix text
2876- * @param string| null $suffix Banner suffix text
2875+ * @param null|string $prefix Banner prefix text
2876+ * @param null|string $suffix Banner suffix text
28772877 */
28782878 public function logBanner ($ prefix = null , $ suffix = null ): void
28792879 {
@@ -2908,7 +2908,7 @@ public function getMessages(): array
29082908 /**
29092909 * Get current operation name.
29102910 *
2911- * @return string| null Current operation name
2911+ * @return null|string Current operation name
29122912 */
29132913 public function getOperation (): string
29142914 {
0 commit comments