private def eventTitle()

in football/src/main/scala/com/gu/mobile/notifications/football/notificationbuilders/MatchStatusNotificationBuilder.scala [135:143]


  private def eventTitle(fme: FootballMatchEvent): String = fme match {
    case _: Goal => "Goal!"
    case HalfTime(_) => "Half-time"
    case KickOff(_) => "Kick-off!"
    case SecondHalf(_) => "Second-half start"
    case FullTime(_) => "Full-Time"
    case _:Dismissal => "Red card"
    case _ => "The Guardian"
  }