/** * Gets the default picture to show, anyways * * @see Logo::getDefaultPicture() * * @return void */ protected function getDefaultPicture() { //if we are here, we want to serve default logo $pic = new Logo(); $this->file_path = $pic->getPath(); $this->format = $pic->getFormat(); $this->mime = $pic->getMime(); //anyways, we have no custom print logo $this->custom = false; }