- All **code comments must be in English**. - All **documentation must be in English**. # š” Mandatory Rule for Oro Bundles ## Bundle Registration Always create the file: ``` Resources/config/oro/bundles.yml ``` **Example:** ````yaml bundles: - { name: Vendor\BundleNameBundle\BundleNameBundle, priority: 200 } ```` āļø**Never** register the bundle via `config/bundles.php`.
Always create the file:
Resources/config/oro/bundles.yml
Example:
bundles:
- { name: Vendor\BundleNameBundle\BundleNameBundle, priority: 200 }
āļøNever register the bundle via config/bundles.php
.