[PR #475] [CLOSED] fix CS #8251

Open
opened 2026-01-22 15:59:04 +01:00 by admin · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/doctrine/orm/pull/475
Author: @jakoch
Created: 10/12/2012
Status: Closed

Base: masterHead: master


📝 Commits (6)

  • 7449b3b added PSR2 check - let's face the truth
  • 0ce0cca added PSR2 check - let's face the truth
  • d11746e added php-cs-fixer - let's face the truth
  • b8cc929 ignore netbeans folder
  • 5449333 switching run order
  • ad90577 QA - PSR2 (removed unused use statements, fixed some white-lines, added missing license header)

📊 Changes

70 files changed (+279 additions, -258 deletions)

View changed files

📝 .gitignore (+12 -11)
📝 .travis.yml (+8 -1)
📝 lib/Doctrine/ORM/AbstractQuery.php (+0 -1)
📝 lib/Doctrine/ORM/Configuration.php (+12 -12)
📝 lib/Doctrine/ORM/EntityManager.php (+8 -10)
📝 lib/Doctrine/ORM/EntityRepository.php (+1 -1)
📝 lib/Doctrine/ORM/Event/PreUpdateEventArgs.php (+1 -3)
📝 lib/Doctrine/ORM/Id/SequenceGenerator.php (+2 -1)
📝 lib/Doctrine/ORM/Id/UuidGenerator.php (+2 -1)
📝 lib/Doctrine/ORM/Internal/Hydration/AbstractHydrator.php (+5 -6)
📝 lib/Doctrine/ORM/Internal/Hydration/ArrayHydrator.php (+3 -1)
📝 lib/Doctrine/ORM/Internal/Hydration/HydrationException.php (+17 -0)
📝 lib/Doctrine/ORM/Internal/Hydration/ObjectHydrator.php (+0 -1)
📝 lib/Doctrine/ORM/Internal/Hydration/SimpleObjectHydrator.php (+4 -6)
📝 lib/Doctrine/ORM/Internal/Hydration/SingleScalarHydrator.php (+2 -3)
📝 lib/Doctrine/ORM/Mapping/Builder/AssociationBuilder.php (+0 -1)
📝 lib/Doctrine/ORM/Mapping/Builder/ClassMetadataBuilder.php (+2 -2)
📝 lib/Doctrine/ORM/Mapping/Builder/FieldBuilder.php (+0 -1)
📝 lib/Doctrine/ORM/Mapping/Builder/ManyToManyAssociationBuilder.php (+0 -1)
📝 lib/Doctrine/ORM/Mapping/Builder/OneToManyAssociationBuilder.php (+0 -1)

...and 50 more files

📄 Description

Some CS PSR2 fixes. These fixes should be BC.
@stof if you find the time, please take a look.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/doctrine/orm/pull/475 **Author:** [@jakoch](https://github.com/jakoch) **Created:** 10/12/2012 **Status:** ❌ Closed **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (6) - [`7449b3b`](https://github.com/doctrine/orm/commit/7449b3bd1ed83e5dc875da8684924da47fc3a9bc) added PSR2 check - let's face the truth - [`0ce0cca`](https://github.com/doctrine/orm/commit/0ce0cca052040c09d94500faf41de497b0271430) added PSR2 check - let's face the truth - [`d11746e`](https://github.com/doctrine/orm/commit/d11746ef954a7e00b0e484c54ed7dd690a8a4198) added php-cs-fixer - let's face the truth - [`b8cc929`](https://github.com/doctrine/orm/commit/b8cc9299f559d9d910cb01943f63857b38421033) ignore netbeans folder - [`5449333`](https://github.com/doctrine/orm/commit/54493335aac3406eb019a686eeac6e53a5f7487f) switching run order - [`ad90577`](https://github.com/doctrine/orm/commit/ad90577463f61ebc0ea3c444a0edbe5c44dc6e78) QA - PSR2 (removed unused use statements, fixed some white-lines, added missing license header) ### 📊 Changes **70 files changed** (+279 additions, -258 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+12 -11) 📝 `.travis.yml` (+8 -1) 📝 `lib/Doctrine/ORM/AbstractQuery.php` (+0 -1) 📝 `lib/Doctrine/ORM/Configuration.php` (+12 -12) 📝 `lib/Doctrine/ORM/EntityManager.php` (+8 -10) 📝 `lib/Doctrine/ORM/EntityRepository.php` (+1 -1) 📝 `lib/Doctrine/ORM/Event/PreUpdateEventArgs.php` (+1 -3) 📝 `lib/Doctrine/ORM/Id/SequenceGenerator.php` (+2 -1) 📝 `lib/Doctrine/ORM/Id/UuidGenerator.php` (+2 -1) 📝 `lib/Doctrine/ORM/Internal/Hydration/AbstractHydrator.php` (+5 -6) 📝 `lib/Doctrine/ORM/Internal/Hydration/ArrayHydrator.php` (+3 -1) 📝 `lib/Doctrine/ORM/Internal/Hydration/HydrationException.php` (+17 -0) 📝 `lib/Doctrine/ORM/Internal/Hydration/ObjectHydrator.php` (+0 -1) 📝 `lib/Doctrine/ORM/Internal/Hydration/SimpleObjectHydrator.php` (+4 -6) 📝 `lib/Doctrine/ORM/Internal/Hydration/SingleScalarHydrator.php` (+2 -3) 📝 `lib/Doctrine/ORM/Mapping/Builder/AssociationBuilder.php` (+0 -1) 📝 `lib/Doctrine/ORM/Mapping/Builder/ClassMetadataBuilder.php` (+2 -2) 📝 `lib/Doctrine/ORM/Mapping/Builder/FieldBuilder.php` (+0 -1) 📝 `lib/Doctrine/ORM/Mapping/Builder/ManyToManyAssociationBuilder.php` (+0 -1) 📝 `lib/Doctrine/ORM/Mapping/Builder/OneToManyAssociationBuilder.php` (+0 -1) _...and 50 more files_ </details> ### 📄 Description Some CS PSR2 fixes. These fixes should be BC. @stof if you find the time, please take a look. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
admin added the pull-request label 2026-01-22 15:59:04 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: doctrine/archived-orm#8251