public function getStreamWithoutLabel(string $stream) : string { $index = strpos($stream, '@'); if ($index === false) { return $stream; } return substr($stream, 0, $index); }