private static function hasMoreThanOneNonEmptyLine()

in src/shipit/filter/ShipItMessageSections.php [121:130]


  private static function hasMoreThanOneNonEmptyLine(string $str): bool {
    $lines = Str\split($str, "\n");
    $cn = 0;
    foreach ($lines as $line) {
      if (!(PHP\ctype_space($line) || $line === '')) {
        ++$cn;
      }
    }
    return $cn > 1;
  }