fix(deps): update dependency friendsofphp/php-cs-fixer to <3.17.1 (main) (#2556)

* fix(deps): update dependency friendsofphp/php-cs-fixer to <3.17.1

* style(legacy): format using php-cs-fixer

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: jo <ljonas@riseup.net>
This commit is contained in:
renovate[bot] 2023-05-25 15:06:18 +02:00 committed by GitHub
parent 734f8baeb4
commit 8b41302ddd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
24 changed files with 62 additions and 114 deletions

View File

@ -434,7 +434,6 @@ class Application_Common_DateHelper
* *
* Convert float seconds value to playlist time format * Convert float seconds value to playlist time format
* *
* @param float $seconds
* @param mixed $p_seconds * @param mixed $p_seconds
* *
* @return string * @return string

View File

@ -3,7 +3,7 @@
class Application_Common_TuneIn class Application_Common_TuneIn
{ {
/** /**
* @param $title url encoded string * @param $title url encoded string
* @param $artist url encoded string * @param $artist url encoded string
*/ */
public static function sendMetadataToTunein($title, $artist) public static function sendMetadataToTunein($title, $artist)

View File

@ -12,6 +12,6 @@ final class MediaType
public static function getDefault() public static function getDefault()
{ {
return static::__default; return self::__default;
} }
} }

View File

@ -590,9 +590,6 @@ class ApiController extends Zend_Controller_Action
* New API endpoint to display metadata from any single track. * New API endpoint to display metadata from any single track.
* *
* Find metadata to any track imported (eg. id=1&return=json) * Find metadata to any track imported (eg. id=1&return=json)
*
* @param int $id track ID
* @param string $return json, artwork_data, or artwork
*/ */
public function trackAction() public function trackAction()
{ {

View File

@ -253,7 +253,7 @@ class PlaylistController extends Zend_Controller_Action
Logging::info("Currently active {$type} {$obj_sess->id}"); Logging::info("Currently active {$type} {$obj_sess->id}");
if (in_array($obj_sess->id, $ids)) { if (in_array($obj_sess->id, $ids)) {
Logging::info("Deleting currently active {$type}"); Logging::info("Deleting currently active {$type}");
// Application_Model_Library::changePlaylist(null, $type); // Application_Model_Library::changePlaylist(null, $type);
} else { } else {
Logging::info("Not deleting currently active {$type}"); Logging::info("Not deleting currently active {$type}");
$obj = new $objInfo['className']($obj_sess->id); $obj = new $objInfo['className']($obj_sess->id);
@ -562,7 +562,7 @@ class PlaylistController extends Zend_Controller_Action
$bl->saveSmartBlockCriteria($params['data']); $bl->saveSmartBlockCriteria($params['data']);
$this->createUpdateResponse($bl, true); $this->createUpdateResponse($bl, true);
$this->view->result = 0; $this->view->result = 0;
// $result['html'] = $this->createFullResponse($bl, true, true); // $result['html'] = $this->createFullResponse($bl, true, true);
} else { } else {
$this->view->form = $form; $this->view->form = $form;
$this->view->unsavedName = $params['name']; $this->view->unsavedName = $params['name'];
@ -601,7 +601,7 @@ class PlaylistController extends Zend_Controller_Action
$result = $bl->generateSmartBlock($params['data']); $result = $bl->generateSmartBlock($params['data']);
$this->view->result = $result['result']; $this->view->result = $result['result'];
$this->createUpdateResponse($bl, true); $this->createUpdateResponse($bl, true);
// $this->_helper->json->sendJson(array("result"=>0, "html"=>$this->createFullResponse($bl, true, true))); // $this->_helper->json->sendJson(array("result"=>0, "html"=>$this->createFullResponse($bl, true, true)));
} else { } else {
$this->view->obj = $bl; $this->view->obj = $bl;
$this->view->id = $bl->getId(); $this->view->id = $bl->getId();

View File

@ -69,7 +69,7 @@ class PreferenceController extends Zend_Controller_Action
$this->view->statusMsg = "<div class='success'>" . _('Preferences updated.') . '</div>'; $this->view->statusMsg = "<div class='success'>" . _('Preferences updated.') . '</div>';
$form = new Application_Form_Preferences(); $form = new Application_Form_Preferences();
$this->view->form = $form; $this->view->form = $form;
// $this->_helper->json->sendJson(array("valid"=>"true", "html"=>$this->view->render('preference/index.phtml'))); // $this->_helper->json->sendJson(array("valid"=>"true", "html"=>$this->view->render('preference/index.phtml')));
} else { } else {
$this->view->form = $form; $this->view->form = $form;
// $this->_helper->json->sendJson(array("valid"=>"false", "html"=>$this->view->render('preference/index.phtml'))); // $this->_helper->json->sendJson(array("valid"=>"false", "html"=>$this->view->render('preference/index.phtml')));

View File

@ -707,8 +707,6 @@ SQL;
/** /**
* Change fadeIn and fadeOut values for block Element. * Change fadeIn and fadeOut values for block Element.
* *
* @param int $pos
* position of audioclip in block
* @param string $fadeIn * @param string $fadeIn
* new value in ss.ssssss or extent format * new value in ss.ssssss or extent format
* @param string $fadeOut * @param string $fadeOut
@ -812,8 +810,6 @@ SQL;
/** /**
* Change cueIn/cueOut values for block element. * Change cueIn/cueOut values for block element.
* *
* @param int $pos
* position of audioclip in block
* @param string $cueIn * @param string $cueIn
* new value in ss.ssssss or extent format * new value in ss.ssssss or extent format
* @param string $cueOut * @param string $cueOut

View File

@ -781,8 +781,6 @@ SQL;
/** /**
* Change cueIn/cueOut values for playlist element. * Change cueIn/cueOut values for playlist element.
* *
* @param int $pos
* position of audioclip in playlist
* @param string $cueIn * @param string $cueIn
* new value in ss.ssssss or extent format * new value in ss.ssssss or extent format
* @param string $cueOut * @param string $cueOut
@ -1033,8 +1031,6 @@ SQL;
/** /**
* Delete all files from playlist. * Delete all files from playlist.
*
* @param int $p_playlistId
*/ */
public function deleteAllFilesFromPlaylist() public function deleteAllFilesFromPlaylist()
{ {

View File

@ -952,7 +952,7 @@ class Application_Model_Preference
/** /**
* Sets the time scale preference (agendaDay/agendaWeek/month) in Calendar. * Sets the time scale preference (agendaDay/agendaWeek/month) in Calendar.
* *
* @param $timeScale new time scale * @param $timeScale new time scale
*/ */
public static function SetCalendarTimeScale($timeScale) public static function SetCalendarTimeScale($timeScale)
{ {
@ -976,7 +976,7 @@ class Application_Model_Preference
/** /**
* Sets the number of entries to show preference in library under Playlist Builder. * Sets the number of entries to show preference in library under Playlist Builder.
* *
* @param $numEntries new number of entries to show * @param $numEntries new number of entries to show
*/ */
public static function SetLibraryNumEntries($numEntries) public static function SetLibraryNumEntries($numEntries)
{ {
@ -1000,7 +1000,7 @@ class Application_Model_Preference
/** /**
* Sets the time interval preference in Calendar. * Sets the time interval preference in Calendar.
* *
* @param $timeInterval new time interval * @param $timeInterval new time interval
*/ */
public static function SetCalendarTimeInterval($timeInterval) public static function SetCalendarTimeInterval($timeInterval)
{ {

View File

@ -171,9 +171,9 @@ SQL;
* If a current media item is currently playing, this function then attempts to * If a current media item is currently playing, this function then attempts to
* find an item that played previously and is scheduled to play next. * find an item that played previously and is scheduled to play next.
* *
* @param $utcNow DateTime current time in UTC * @param $utcNow DateTime current time in UTC
* @param $currentShowInstanceId int id of the show instance currently playing * @param $currentShowInstanceId int id of the show instance currently playing
* @param $source string the current prioritized source * @param $source string the current prioritized source
* *
* @return array with data about the previous, current, and next media items playing. * @return array with data about the previous, current, and next media items playing.
* Returns an empty arrays if there is no media item currently playing * Returns an empty arrays if there is no media item currently playing
@ -871,7 +871,6 @@ SQL;
* @param array $item schedule info about one track * @param array $item schedule info about one track
* @param int $media_id scheduled item's cc_files id * @param int $media_id scheduled item's cc_files id
* @param string $uri path to the scheduled item's physical location * @param string $uri path to the scheduled item's physical location
* @param int $filsize The file's file size in bytes
* @param mixed $filesize * @param mixed $filesize
*/ */
private static function createFileScheduleEvent(&$data, $item, $media_id, $uri, $filesize) private static function createFileScheduleEvent(&$data, $item, $media_id, $uri, $filesize)

View File

@ -614,10 +614,10 @@ final class Application_Model_Scheduler
/** /**
* Enter description here ... * Enter description here ...
* *
* @param $scheduleItems * @param $scheduleItems
* cc_schedule items, where the items get inserted after * cc_schedule items, where the items get inserted after
* @param $filesToInsert * @param $filesToInsert
* array of schedule item info, what gets inserted into cc_schedule * array of schedule item info, what gets inserted into cc_schedule
* @param mixed $mediaItems * @param mixed $mediaItems
* @param mixed $moveAction * @param mixed $moveAction
* @param mixed $adjustSched * @param mixed $adjustSched

View File

@ -959,14 +959,13 @@ SQL;
/** /**
* Get all the show instances in the given time range (inclusive). * Get all the show instances in the given time range (inclusive).
* *
* @param dateTime $start_timestamp * @param dateTime $start_timestamp
* In UTC time * In UTC time
* @param dateTime $end_timestamp * @param dateTime $end_timestamp
* In UTC time * In UTC time
* @param unknown_type $excludeInstance * @param bool $onlyRecord
* @param bool $onlyRecord * @param int $showId
* @param int $showId * limits the results to instances of a given showId only
* limits the results to instances of a given showId only
* *
* @return array * @return array
*/ */
@ -1054,14 +1053,9 @@ SQL;
} }
/** /**
* @param DateTime $start * @param mixed $p_start
* -in UTC time * @param mixed $p_end
* @param DateTime $end * @param mixed $p_editable
* -in UTC time
* @param bool $editable
* @param mixed $p_start
* @param mixed $p_end
* @param mixed $p_editable
*/ */
public static function &getFullCalendarEvents($p_start, $p_end, $p_editable = false) public static function &getFullCalendarEvents($p_start, $p_end, $p_editable = false)
{ {
@ -1301,7 +1295,7 @@ SQL;
* Gets the current show, previous and next with an n-day window from * Gets the current show, previous and next with an n-day window from
* the given timeNow, so timeNow-2days and timeNow+$daysToRetrieve days. * the given timeNow, so timeNow-2days and timeNow+$daysToRetrieve days.
* *
* @param $utcNow A DateTime object containing the current time in UTC * @param $utcNow A DateTime object containing the current time in UTC
* @param mixed $utcEndStr * @param mixed $utcEndStr
* @param mixed $showsToRetrieve * @param mixed $showsToRetrieve
* *

View File

@ -234,8 +234,6 @@ SQL;
/** /**
* Add a playlist as the last item of the current show. * Add a playlist as the last item of the current show.
* *
* @param int $plId
* Playlist ID
* @param mixed $pl_id * @param mixed $pl_id
* @param mixed $checkUserPerm * @param mixed $checkUserPerm
*/ */
@ -257,8 +255,6 @@ SQL;
/** /**
* Add a playlist as the first item of the current show. * Add a playlist as the first item of the current show.
* *
* @param int $plId
* Playlist ID
* @param mixed $pl_id * @param mixed $pl_id
* @param mixed $checkUserPerm * @param mixed $checkUserPerm
*/ */

View File

@ -247,12 +247,8 @@ class Application_Model_StoredFile
/** /**
* Set metadata element value. * Set metadata element value.
* *
* @param string $category * @param mixed $p_category
* Metadata element by metadata constant * @param mixed $p_value
* @param string $value
* value to store, if NULL then delete record
* @param mixed $p_category
* @param mixed $p_value
*/ */
public function setMetadataValue($p_category, $p_value) public function setMetadataValue($p_category, $p_value)
{ {
@ -264,12 +260,8 @@ class Application_Model_StoredFile
/** /**
* Set metadata element value. * Set metadata element value.
* *
* @param string $category * @param mixed $p_category
* Metadata element by db column * @param mixed $p_value
* @param string $value
* value to store, if NULL then delete record
* @param mixed $p_category
* @param mixed $p_value
*/ */
public function setDbColMetadataValue($p_category, $p_value) public function setDbColMetadataValue($p_category, $p_value)
{ {
@ -468,7 +460,6 @@ SQL;
* This function is for when media monitor detects deletion of file * This function is for when media monitor detects deletion of file
* and trying to update airtime side. * and trying to update airtime side.
* *
* @param bool $p_deleteFile
* @param mixed $deleteFromPlaylist * @param mixed $deleteFromPlaylist
*/ */
public function deleteByMediaMonitor($deleteFromPlaylist = false) public function deleteByMediaMonitor($deleteFromPlaylist = false)
@ -1009,8 +1000,8 @@ SQL;
/** /**
* Enter description here ... * Enter description here ...
* *
* @param $dir_id - if this is not provided, it returns all files with full * @param $dir_id - if this is not provided, it returns all files with full
* path constructed * path constructed
* @param mixed $all * @param mixed $all
*/ */
public static function listAllFiles($dir_id = null, $all = true) public static function listAllFiles($dir_id = null, $all = true)

View File

@ -264,7 +264,7 @@ class Application_Model_User
* uses it to figure out who to reassign the deleted users files to. * uses it to figure out who to reassign the deleted users files to.
* *
* @param $ignoreUser String optional userid of a user that shall be ignored when * @param $ignoreUser String optional userid of a user that shall be ignored when
* when looking for the "first" admin * when looking for the "first" admin
* *
* @return null|CcSubj * @return null|CcSubj
*/ */

View File

@ -188,7 +188,7 @@ class CcFiles extends BaseCcFiles
} }
/** Update a file with metadata specified in an array. /** Update a file with metadata specified in an array.
* @param $fileId string The ID of the file to update in the DB * @param $fileId string The ID of the file to update in the DB
* @param $fileArray array An associative array containing metadata. Replaces those fields if they exist. * @param $fileArray array An associative array containing metadata. Replaces those fields if they exist.
* *
* @return array a sanitized version of the file metadata array * @return array a sanitized version of the file metadata array

View File

@ -39,8 +39,6 @@ class CcShowDays extends BaseCcShowDays
/** /**
* Returns the end of a show in the timezone it was created in. * Returns the end of a show in the timezone it was created in.
*
* @param DateTime $startDateTime first show in show's local time
*/ */
public function getLocalEndDateAndTime() public function getLocalEndDateAndTime()
{ {

View File

@ -197,10 +197,10 @@ class Application_Service_PodcastEpisodeService extends Application_Service_Thir
/** /**
* Update a ThirdPartyTrackReferences object for a completed upload. * Update a ThirdPartyTrackReferences object for a completed upload.
* *
* @param $task CeleryTasks the completed CeleryTasks object * @param $task CeleryTasks the completed CeleryTasks object
* @param $episodeId int PodcastEpisodes identifier * @param $episodeId int PodcastEpisodes identifier
* @param $episode stdClass simple object containing Podcast episode information * @param $episode stdClass simple object containing Podcast episode information
* @param $status string Celery task status * @param $status string Celery task status
* *
* @return ThirdPartyTrackReferences the updated ThirdPartyTrackReferences object * @return ThirdPartyTrackReferences the updated ThirdPartyTrackReferences object
* *

View File

@ -142,8 +142,8 @@ class Application_Service_PodcastService
} }
/** /**
* @param $title passed in directly from web UI input * @param $title passed in directly from web UI input
* This will automatically create a smartblock and playlist for this podcast * This will automatically create a smartblock and playlist for this podcast
* @param mixed $podcast * @param mixed $podcast
*/ */
public static function createPodcastSmartblockAndPlaylist($podcast, $title = null) public static function createPodcastSmartblockAndPlaylist($podcast, $title = null)

View File

@ -43,7 +43,7 @@ class Application_Service_SchedulerService
/** /**
* Applies the show start difference to any scheduled items. * Applies the show start difference to any scheduled items.
* *
* @param $diff (integer, difference between unix epoch in seconds) * @param $diff (integer, difference between unix epoch in seconds)
* @param mixed $instanceIds * @param mixed $instanceIds
*/ */
public static function updateScheduleStartTime($instanceIds, $diff) public static function updateScheduleStartTime($instanceIds, $diff)

View File

@ -469,8 +469,7 @@ class Application_Service_ShowFormService
/** /**
* Enter description here ... * Enter description here ...
* *
* @param DateTime $showStart user's local time * @param mixed $p_showStart
* @param mixed $p_showStart
*/ */
private function hasShowStarted($p_showStart) private function hasShowStarted($p_showStart)
{ {
@ -658,9 +657,8 @@ class Application_Service_ShowFormService
* When the timezone is changed in add-show form this function * When the timezone is changed in add-show form this function
* applies the new timezone to the start and end time. * applies the new timezone to the start and end time.
* *
* @param $date String * @param $date String
* @param $time String * @param $time String
* @param $timezone String
* @param mixed $newTimezone * @param mixed $newTimezone
* @param mixed $oldTimezone * @param mixed $oldTimezone
*/ */

View File

@ -529,8 +529,6 @@ SQL;
* - Update start and end time * - Update start and end time
* *
* @param $showData edit show form values in raw form * @param $showData edit show form values in raw form
* @param $isRecorded value computed from the edit show form
* @param $repeatType value computed from the edit show form
*/ */
private function delegateInstanceCleanup($showData) private function delegateInstanceCleanup($showData)
{ {
@ -597,7 +595,7 @@ SQL;
$this->deleteAllInstances($showId); $this->deleteAllInstances($showId);
$this->deleteAllShowDays($showId); $this->deleteAllShowDays($showId);
// when repeating by day of the month (1st, 2nd, etc.) we do not store the repeat week days // when repeating by day of the month (1st, 2nd, etc.) we do not store the repeat week days
} elseif ($currentRepeatType != 2) { } elseif ($currentRepeatType != 2) {
// repeat type is the same, check if the days of the week are the same // repeat type is the same, check if the days of the week are the same
$repeatingDaysChanged = false; $repeatingDaysChanged = false;
@ -755,10 +753,10 @@ SQL;
/** /**
* Enter description here ... * Enter description here ...
* *
* @param $daysRemoved array of days (days of the week) removed * @param $daysRemoved array of days (days of the week) removed
* (days of the week are represented numerically * (days of the week are represented numerically
* 0=>sunday, 1=>monday, 2=>tuesday, etc.) * 0=>sunday, 1=>monday, 2=>tuesday, etc.)
* @param $showDays array of ccShowDays objects * @param $showDays array of ccShowDays objects
* @param mixed $showId * @param mixed $showId
*/ */
private function deleteRemovedShowDayInstances($daysRemoved, $showDays, $showId) private function deleteRemovedShowDayInstances($daysRemoved, $showDays, $showId)
@ -883,10 +881,10 @@ SQL;
CcShowQuery::create() CcShowQuery::create()
->filterByDbId($showId) ->filterByDbId($showId)
->delete(); ->delete();
// There is only one cc_show_instance if the user selects 'Delete This Instance' // There is only one cc_show_instance if the user selects 'Delete This Instance'
// There is more than one cc_show_instance if the user selects 'Delete This // There is more than one cc_show_instance if the user selects 'Delete This
// Instance and All Following'. We only need to set the last_show value // Instance and All Following'. We only need to set the last_show value
// when 'Delete This Instance and All Following' has been selected // when 'Delete This Instance and All Following' has been selected
} elseif (count($ccShowInstances) > 1) { } elseif (count($ccShowInstances) > 1) {
$this->setLastRepeatingShowDate($showId); $this->setLastRepeatingShowDate($showId);
} }
@ -1088,7 +1086,6 @@ SQL;
/** /**
* Updates the start and end time for cc_show_instances. * Updates the start and end time for cc_show_instances.
* *
* @param $showData edit show form data
* @param mixed $diff * @param mixed $diff
*/ */
private function updateInstanceStartEndTime($diff) private function updateInstanceStartEndTime($diff)
@ -1205,7 +1202,6 @@ SQL;
* @param unknown_type $showDay * @param unknown_type $showDay
* @param unknown_type $populateUntil * @param unknown_type $populateUntil
* @param unknown_type $repeatInterval * @param unknown_type $repeatInterval
* @param unknown_type $isRebroadcast
* @param mixed $repeatType * @param mixed $repeatType
* @param null|mixed $daysAdded * @param null|mixed $daysAdded
*/ */
@ -1426,7 +1422,6 @@ SQL;
* i.e. second monday of each month. * i.e. second monday of each month.
* *
* @param string $showStart * @param string $showStart
* @param string $timezone user's local timezone
*/ */
public static function getMonthlyWeeklyRepeatInterval($showStart) public static function getMonthlyWeeklyRepeatInterval($showStart)
{ {
@ -1480,7 +1475,7 @@ SQL;
/** /**
* Enter description here ... * Enter description here ...
* *
* @param $start user's local time * @param $start user's local time
* @param mixed $timezone * @param mixed $timezone
* @param mixed $startTime * @param mixed $startTime
*/ */
@ -1646,7 +1641,6 @@ SQL;
/** /**
* Sets the fields for a cc_show table row. * Sets the fields for a cc_show table row.
* *
* @param $ccShow
* @param mixed $showData * @param mixed $showData
*/ */
public function setCcShow($showData) public function setCcShow($showData)
@ -1691,11 +1685,6 @@ SQL;
/** /**
* Sets the fields for a cc_show_days table row. * Sets the fields for a cc_show_days table row.
* *
* @param $showId
* @param $userId
* @param $repeatType
* @param $isRecorded
* @param $showDay ccShowDay object we are setting values on
* @param mixed $showData * @param mixed $showData
*/ */
private function setCcShowDays($showData) private function setCcShowDays($showData)
@ -1824,9 +1813,6 @@ SQL;
/** /**
* Sets the fields for a cc_show_rebroadcast table row. * Sets the fields for a cc_show_rebroadcast table row.
* *
* @param $showId
* @param $repeatType
* @param $isRecorded
* @param mixed $showData * @param mixed $showData
*/ */
private function setCcShowRebroadcasts($showData) private function setCcShowRebroadcasts($showData)
@ -1873,7 +1859,6 @@ SQL;
/** /**
* Sets the fields for a cc_show_hosts table row. * Sets the fields for a cc_show_hosts table row.
* *
* @param $showId
* @param mixed $showData * @param mixed $showData
*/ */
private function setCcShowHosts($showData) private function setCcShowHosts($showData)
@ -1911,7 +1896,6 @@ SQL;
* *
* @param DateTime $showStart user's local time * @param DateTime $showStart user's local time
* @param string $duration time interval (h)h:(m)m(:ss) * @param string $duration time interval (h)h:(m)m(:ss)
* @param string $timezone "Europe/Prague"
* @param array $offset (days, hours, mins) used for rebroadcast shows * @param array $offset (days, hours, mins) used for rebroadcast shows
* *
* @return array of 2 DateTime objects, start/end time of the show in UTC * @return array of 2 DateTime objects, start/end time of the show in UTC

View File

@ -46,7 +46,7 @@ abstract class Application_Service_ThirdPartyCeleryService extends Application_S
* *
* @param $fileId int CcFiles identifier * @param $fileId int CcFiles identifier
* @param $brokerTaskId int broker task identifier to so we can asynchronously * @param $brokerTaskId int broker task identifier to so we can asynchronously
* receive completed task messages * receive completed task messages
* @param $taskName string broker task name * @param $taskName string broker task name
* *
* @return CeleryTasks the created task * @return CeleryTasks the created task
@ -73,7 +73,7 @@ abstract class Application_Service_ThirdPartyCeleryService extends Application_S
* Update a CeleryTasks object for a completed task * Update a CeleryTasks object for a completed task
* TODO: should we have a database layer class to handle Propel operations? * TODO: should we have a database layer class to handle Propel operations?
* *
* @param $task CeleryTasks the completed CeleryTasks object * @param $task CeleryTasks the completed CeleryTasks object
* @param $status string Celery task status * @param $status string Celery task status
* *
* @throws Exception * @throws Exception
@ -90,10 +90,10 @@ abstract class Application_Service_ThirdPartyCeleryService extends Application_S
* *
* Manipulation and use of the track object is left up to child implementations * Manipulation and use of the track object is left up to child implementations
* *
* @param $task CeleryTasks the completed CeleryTasks object * @param $task CeleryTasks the completed CeleryTasks object
* @param $trackId int ThirdPartyTrackReferences identifier * @param $trackId int ThirdPartyTrackReferences identifier
* @param $result mixed Celery task result message * @param $result mixed Celery task result message
* @param $status string Celery task status * @param $status string Celery task status
* *
* @return ThirdPartyTrackReferences the updated ThirdPartyTrackReferences object * @return ThirdPartyTrackReferences the updated ThirdPartyTrackReferences object
* *

View File

@ -1,6 +1,6 @@
{ {
"require": { "require": {
"php": "^7.4", "php": "^7.4",
"friendsofphp/php-cs-fixer": "<3.16.1" "friendsofphp/php-cs-fixer": "<3.17.1"
} }
} }