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

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

* style: format legacy files

---------

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-09-17 17:14:59 +02:00 committed by GitHub
parent 4caf0b0ef2
commit 2f1a0a8efa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 25 additions and 25 deletions

View file

@ -154,7 +154,7 @@ class Application_Model_Webstream implements Application_Model_LibraryEditable
// minutes cannot be over 59. Need to convert anything > 59 minutes into hours.
$hours += intval($minutes / 60);
$minutes = $minutes % 60;
$minutes %= 60;
$di = new DateInterval("PT{$hours}H{$minutes}M");