chore(legacy): format code

This commit is contained in:
jo 2022-09-12 13:16:14 +02:00 committed by Jonas L
parent da52f495b4
commit 63d9e430e1
33 changed files with 111 additions and 102 deletions

View file

@ -44,10 +44,10 @@ class Application_Service_PodcastService
*
* @param string $feedUrl Podcast RSS Feed Url
*
* @return array Podcast Array with a full list of episodes
*
* @throws Exception
* @throws InvalidPodcastException
*
* @return array Podcast Array with a full list of episodes
*/
public static function createFromFeedUrl($feedUrl)
{
@ -278,10 +278,10 @@ class Application_Service_PodcastService
*
* @param $podcastId
*
* @return array - Podcast Array with a full list of episodes
*
* @throws PodcastNotFoundException
* @throws InvalidPodcastException
*
* @return array - Podcast Array with a full list of episodes
*/
public static function getPodcastById($podcastId)
{
@ -325,9 +325,9 @@ class Application_Service_PodcastService
* @param int $podcastId ID of the podcast to build a response for
* @param Zend_View_Interface $view Zend view object to render the response HTML
*
* @throws PodcastNotFoundException
*
* @return array the response array containing the podcast data and editor HTML
*
* @throws PodcastNotFoundException
*/
public static function buildPodcastEditorResponse($podcastId, $view)
{
@ -349,10 +349,10 @@ class Application_Service_PodcastService
* @param $podcastId
* @param $data
*
* @return array
*
* @throws Exception
* @throws PodcastNotFoundException
*
* @return array
*/
public static function updatePodcastFromArray($podcastId, $data)
{