chore(deps): mise à jour des dépendances mineures#2202
Merged
Mopolo merged 3 commits intoafup:masterfrom Apr 26, 2026
Merged
Conversation
- Symfony 7.3.* -> 7.4.* (all packages) - symfony/monolog-bundle ^3.1 -> ^3.11 - twig/* ^3.21 -> ^3.24 - doctrine/dbal 4.3.4 -> 4.4.3, doctrine/orm 3.6.0 -> 3.6.3 - phpstan/phpstan 2.1.31 -> 2.1.51 + plugins - friendsofphp/php-cs-fixer 3.88 -> 3.95 - rector/rector 2.2 -> 2.4, behat/behat 3.29 -> 3.31 - phpunit/phpunit 11.5.42 -> 11.5.55 - phpmailer/phpmailer 6.10 -> 6.12 - smarty/smarty 5.6 -> 5.8, pimple/pimple 3.5 -> 3.6 - pear/pear v1.10.9 -> v1.10.18 (custom repository) - znk3r/html_common v2.0.0 -> v2.0.1 (custom repository) - nginx 1.25.4 -> 1.29.7 (compose.yml) - sass ^1.0 -> ^1.99.0 (npm) - tarteaucitronjs ^1.19 -> ^1.32.0 (npm) - tablefilter ^0.5 -> ^0.7.0 (npm)
- CS Fixer 3.95: auto-fix function_declaration, braces_position, multiline_promoted_properties and single_line_empty_body rules - PHPStan 2.1.51: remove redundant ?? null on non-nullable properties in CompanyMemberInvitation - PHPStan 2.1.51: remove redundant null guard in TicketType (exception already thrown upstream if event_id is null)
Mopolo
reviewed
Apr 24, 2026
| $filteredEventTickets[] = $eventTicket; | ||
| } | ||
|
|
||
| if ($options['event_id'] !== null) { |
Contributor
There was a problem hiding this comment.
Cette condition est aussi ligne 45, est-ce qu'il ne faudrait pas l'enlever aussi ?
Contributor
Author
There was a problem hiding this comment.
je pense pas car à la ligne 45 elle sert à éviter d'appeler $this->eventRepository->get(null). La ligne 91 était une redondance car il y a une exception vers la ligne 50 qui garanti que c'est pas null
Contributor
There was a problem hiding this comment.
Ah oui je n'avais pas vu ! Autant pour moi :)
Mopolo
approved these changes
Apr 24, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Mise à jour de toutes les dépendances mineures/patch référencées dans #2195.
Cette PR ne ferme pas l'issue — les mises à jour majeures (Symfony 8, webpack 5, jQuery 4, etc.) restent en attente.
PHP (Composer)
7.3.*→7.4.*(tous les packages)symfony/monolog-bundle^3.1→^3.11twig/*^3.21→^3.24doctrine/dbal4.3.4→4.4.3,doctrine/orm3.6.0→3.6.3phpstan/phpstan2.1.31→2.1.51+ pluginsfriendsofphp/php-cs-fixer3.88→3.95rector/rector2.2→2.4,behat/behat3.29→3.31phpunit/phpunit11.5.42→11.5.55phpmailer/phpmailer6.10→6.12phpoffice/phpspreadsheet1.30.0→1.30.4smarty/smarty5.6→5.8pear/pearv1.10.9→v1.10.18(repository custom)znk3r/html_commonv2.0.0→v2.0.1(repository custom)Docker
nginx1.25.4→1.29.7(compose.yml)npm
sass^1.0→^1.99.0tarteaucitronjs^1.19→^1.32.0tablefilter^0.5→^0.7.0Issue associée
#2195
Notes
Les régressions PHPStan et CS Fixer liées aux nouvelles versions des outils ont été corrigées dans le second commit.
L'échec des tests fonctionnels est pré-existant sur master (introduit par 7d3af6d, sans lien avec cette PR), en revanche la limite de mémoire semblait dépasser parfois j'ai donc augmenté la limite de 128M à 256M.