Skip to content

Commit e2813f5

Browse files
committed
fix: composer pslam
Signed-off-by: Enjeck C. <patrathewhiz@gmail.com>
1 parent 7e4b341 commit e2813f5

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

lib/Service/ColumnTypes/IColumnTypeBusiness.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ interface IColumnTypeBusiness {
2121
*
2222
* @param mixed $value
2323
* @param Column $column
24-
* @return string value stringify
24+
* @return string|false value stringify
2525
*/
26-
public function parseValue($value, Column $column): string;
26+
public function parseValue($value, Column $column): string|false;
2727

2828
/**
2929
* Tests if the given value can be parsed to a value of the column type
@@ -57,7 +57,7 @@ public function canBeParsedDisplayValue($value, Column $column): bool;
5757
*
5858
* @param mixed $value
5959
* @param Column $column
60-
* @return string
60+
* @return string|false
6161
*/
62-
public function parseDisplayValue($value, Column $column): string;
62+
public function parseDisplayValue($value, Column $column): string|false;
6363
}

0 commit comments

Comments
 (0)