They were both introduced and deprecated in 5.4.
$statement->execute($conditionBuilder->getParameters());
}
- /**
- * @since 5.4
- * @deprecated 5.4 - This is a noop
- */
- public function deleteAcpSessionsExcept(User $user, ?string $sessionID = null): void {
- // noop
- }
-
/**
* Deletes a user session with the given session ID.
*
$statement = WCF::getDB()->prepareStatement($sql);
$statement->execute([$sessionID]);
}
-
- /**
- * @since 5.4
- * @deprecated 5.4 - This is a noop
- */
- public function deleteAcpSession(string $sessionID): void {
- // noop
- }
}