1<?php 2 3 4namespace ComboStrap; 5 6 7class ThirdMedia extends Media 8{ 9 10 public function getUrl(): string 11 { 12 13 LogUtility::msg("The media with the mime (" . $this->getPath()->getMime() . ") is not yet implemented", LogUtility::LVL_MSG_ERROR); 14 return "https://combostrap.com/media/not/yet/implemented"; 15 16 } 17} 18