/** * @param Student $object Student object * * @return string */ public function toString($object) { return $object instanceof Student ? 'Student ' . $object->getFirstName() : 'Student'; }