]> git.agnieray.net Git - galette.git/commit
Improve coding standards
authorJohan Cwiklinski <johan@x-tnd.be>
Sun, 14 Apr 2024 06:40:05 +0000 (08:40 +0200)
committerJohan Cwiklinski <johan@x-tnd.be>
Mon, 15 Apr 2024 11:12:46 +0000 (13:12 +0200)
commit75852c6c826475f5c9b3b04ec965beeffb0fad6f
treea1d21a024f9a408638ae7d580a1962c94c513ff3
parentf65d18d0fc74094305465a5b948a0807a74b39a4
Improve coding standards

Enforce typehints on properties, parameters and methods returns
Use object instead of stdClass
Drop useless var declarations
Throw an exception instead of silent fail when property does not
exists
129 files changed:
.phpcs.xml
galette/composer.json
galette/composer.lock
galette/includes/functions.inc.php
galette/includes/galette.inc.php
galette/includes/i18n.inc.php
galette/includes/routes/ajax.routes.php
galette/includes/routes/plugins.routes.php
galette/includes/routes/public_pages.routes.php
galette/includes/sql_parse.php
galette/lib/Galette/Controllers/AbstractController.php
galette/lib/Galette/Controllers/Crud/MembersController.php
galette/lib/Galette/Controllers/Crud/TransactionsController.php
galette/lib/Galette/Core/AbstractPassword.php
galette/lib/Galette/Core/Authentication.php
galette/lib/Galette/Core/Db.php
galette/lib/Galette/Core/Gaptcha.php
galette/lib/Galette/Core/History.php
galette/lib/Galette/Core/Install.php
galette/lib/Galette/Core/L10n.php
galette/lib/Galette/Core/LightSlimApp.php
galette/lib/Galette/Core/Mailing.php
galette/lib/Galette/Core/MailingHistory.php
galette/lib/Galette/Core/Pagination.php
galette/lib/Galette/Core/Password.php
galette/lib/Galette/Core/Picture.php
galette/lib/Galette/Core/Plugins.php
galette/lib/Galette/Core/Preferences.php
galette/lib/Galette/Core/SlimApp.php
galette/lib/Galette/DynamicFields/DynamicField.php
galette/lib/Galette/Entity/Adherent.php
galette/lib/Galette/Entity/Contribution.php
galette/lib/Galette/Entity/ContributionsTypes.php
galette/lib/Galette/Entity/Document.php
galette/lib/Galette/Entity/FieldsConfig.php
galette/lib/Galette/Entity/ListsConfig.php
galette/lib/Galette/Entity/PaymentType.php
galette/lib/Galette/Entity/PdfModel.php
galette/lib/Galette/Entity/Reminder.php
galette/lib/Galette/Entity/SavedSearch.php
galette/lib/Galette/Entity/Social.php
galette/lib/Galette/Entity/Status.php
galette/lib/Galette/Entity/Title.php
galette/lib/Galette/Entity/Transaction.php
galette/lib/Galette/Events/ContribListener.php
galette/lib/Galette/Events/GaletteEvent.php
galette/lib/Galette/Events/MemberListener.php
galette/lib/Galette/Features/Cacheable.php
galette/lib/Galette/Features/Dynamics.php
galette/lib/Galette/Features/Replacements.php
galette/lib/Galette/Filters/AdvancedMembersList.php
galette/lib/Galette/Filters/ContributionsList.php
galette/lib/Galette/Filters/HistoryList.php
galette/lib/Galette/Filters/MembersList.php
galette/lib/Galette/Filters/ScheduledPaymentsList.php
galette/lib/Galette/Filters/TransactionsList.php
galette/lib/Galette/IO/ContributionsCsv.php
galette/lib/Galette/IO/CsvIn.php
galette/lib/Galette/IO/CsvOut.php
galette/lib/Galette/IO/FileTrait.php
galette/lib/Galette/IO/MembersCsv.php
galette/lib/Galette/IO/News.php
galette/lib/Galette/IO/ScheduledPaymentsCsv.php
galette/lib/Galette/Middleware/Authenticate.php
galette/lib/Galette/Middleware/PublicPages.php
galette/lib/Galette/Middleware/UpdateAndMaintenance.php
galette/lib/Galette/Repository/Groups.php
galette/lib/Galette/Repository/Members.php
galette/lib/Galette/Repository/Repository.php
galette/lib/Galette/Twig/CsrfExtension.php
galette/lib/Galette/Util/Release.php
tests/Galette/Controllers/tests/units/PdfController.php
tests/Galette/Core/tests/units/CheckModules.php
tests/Galette/Core/tests/units/Db.php
tests/Galette/Core/tests/units/Galette.php
tests/Galette/Core/tests/units/History.php
tests/Galette/Core/tests/units/I18n.php
tests/Galette/Core/tests/units/Install.php
tests/Galette/Core/tests/units/L10n.php
tests/Galette/Core/tests/units/Links.php
tests/Galette/Core/tests/units/Login.php
tests/Galette/Core/tests/units/Logo.php
tests/Galette/Core/tests/units/MailingHistory.php
tests/Galette/Core/tests/units/Password.php
tests/Galette/Core/tests/units/Picture.php
tests/Galette/Core/tests/units/Plugins.php
tests/Galette/Core/tests/units/Preferences.php
tests/Galette/Core/tests/units/PrintLogo.php
tests/Galette/DynamicFields/tests/units/Boolean.php
tests/Galette/DynamicFields/tests/units/Choice.php
tests/Galette/DynamicFields/tests/units/Date.php
tests/Galette/DynamicFields/tests/units/DynamicField.php
tests/Galette/DynamicFields/tests/units/File.php
tests/Galette/DynamicFields/tests/units/Line.php
tests/Galette/DynamicFields/tests/units/Separator.php
tests/Galette/DynamicFields/tests/units/Text.php
tests/Galette/Entity/tests/units/Adherent.php
tests/Galette/Entity/tests/units/Contribution.php
tests/Galette/Entity/tests/units/ContributionsTypes.php
tests/Galette/Entity/tests/units/FieldsConfig.php
tests/Galette/Entity/tests/units/Group.php
tests/Galette/Entity/tests/units/ListsConfig.php
tests/Galette/Entity/tests/units/PaymentType.php
tests/Galette/Entity/tests/units/PdfModel.php
tests/Galette/Entity/tests/units/SavedSearch.php
tests/Galette/Entity/tests/units/ScheduledPayment.php
tests/Galette/Entity/tests/units/Social.php
tests/Galette/Entity/tests/units/Status.php
tests/Galette/Entity/tests/units/Texts.php
tests/Galette/Entity/tests/units/Title.php
tests/Galette/Entity/tests/units/Transaction.php
tests/Galette/Filters/tests/units/ContributionsList.php
tests/Galette/Filters/tests/units/HistoryList.php
tests/Galette/Filters/tests/units/TransactionsList.php
tests/Galette/IO/tests/units/CsvIn.php
tests/Galette/IO/tests/units/News.php
tests/Galette/Repository/tests/units/Contributions.php
tests/Galette/Repository/tests/units/Groups.php
tests/Galette/Repository/tests/units/Members.php
tests/Galette/Repository/tests/units/PaymentTypes.php
tests/Galette/Repository/tests/units/PdfModels.php
tests/Galette/Repository/tests/units/Reminders.php
tests/Galette/Repository/tests/units/ScheduledPayments.php
tests/Galette/Repository/tests/units/Transactions.php
tests/Galette/Util/tests/units/Password.php
tests/Galette/Util/tests/units/Telemetry.php
tests/GaletteDbFails/Core/tests/units/Install.php
tests/GaletteTestCase.php
tests/GaletteUpdate/Core/tests/units/Install.php