@@ -92,28 +92,28 @@ * @brief Initializes an already allocated XMPPPresence with the specified ID. * * @param ID The value for the stanza's id attribute * @return A initialized XMPPPresence */ -- initWithID: (nullable OFString *)ID; +- (instancetype)initWithID: (nullable OFString *)ID; /*! * @brief Initializes an already allocated XMPPPresence with the specified type. * * @param type The value for the stanza's type attribute * @return A initialized XMPPPresence */ -- initWithType: (nullable OFString *)type; +- (instancetype)initWithType: (nullable OFString *)type; /*! * @brief Initializes an already allocated XMPPPresence with the specified type * and ID. * * @param type The value for the stanza's type attribute * @param ID The value for the stanza's id attribute * @return A initialized XMPPPresence */ -- initWithType: (nullable OFString *)type - ID: (nullable OFString *)ID; +- (instancetype)initWithType: (nullable OFString *)type + ID: (nullable OFString *)ID; @end OF_ASSUME_NONNULL_END