Michel Chowanski
Michel Chowanski
Add one standard role provider for active features. Example: ``` # For one role constraint: has_role('ROLE_ADMIN') # For multiple roles constraint: "has_role('ROLE_ADMIN') or has_role('ROLE_MOD')" ```
The new Flagception Bundle 4.0 will work without the shared "features" tree. Each activator has his own feature tree (if needed) or work without them. The new "EnvironmentActivator" will replace...
The new Flagception Bundle 4.0 will work without the shared "features" tree. Each activator has his own feature tree (if needed) or work without them. The new "CookieActivator" will replace...
For some it is confusing that some activators (eg cookie, environment) share the "features" tree while others (eg database, contentful) are independent of it. Therefore, it makes sense to pack...
Currently the features are case sensitive. We should change it to case insensitive. (maybe as optional setting to prevent a bc)
Code: ``` /** * Sets the default shipping address. * * @param Address $defaultShippingAddress * * * * @return User */ public function setDefaultShippingAddress($defaultShippingAddress): User { $this->defaultShippingAddress = $defaultShippingAddress; return...
**SyliusPayPalPlugin version affected**: 1.6.0 **Description** If the customer puts a few items in the shopping cart and wants to pay with e.g. ‘Cash on Delivery’ but then changes his mind...
**SyliusPayPalPlugin version affected**: 1.6.0 **Description** Our customers can set their preferred payment method as the default payment method. We have written the code for this ourselves. However, this conflicts with...