/**
* Writes a checkin button for a given option.
*
* @param string $task The task name of this button.
* @param string $text The text of this button.
*
* @return StandardButton
*
* @since 4.0.0
*/
public function checkin(string $task, string $text = 'JTOOLBAR_CHECKIN') : StandardButton
{
return $this->standardButton('checkin', $text)->task($task);
}