update return type

This commit is contained in:
Lamrani Abdel 2022-12-20 12:41:54 +01:00
parent aed3f841bc
commit a849283e37

View File

@ -933,7 +933,7 @@ class AdherentType extends CommonObject
* Return clicable link of object (with eventually picto) * Return clicable link of object (with eventually picto)
* *
* @param string $option Where point the link (0=> main card, 1,2 => shipment, 'nolink'=>No link) * @param string $option Where point the link (0=> main card, 1,2 => shipment, 'nolink'=>No link)
* @return void HTML Code for Kanban thumb. * @return string HTML Code for Kanban thumb.
*/ */
public function getKanbanView($option = '') public function getKanbanView($option = '')
{ {
@ -967,6 +967,6 @@ class AdherentType extends CommonObject
$return .= '</div>'; $return .= '</div>';
$return .= '</div>'; $return .= '</div>';
$return .= '</div>'; $return .= '</div>';
print $return; return $return;
} }
} }