Results 73 issues of webDEVILopers

Currently there is a issue with the Symfony Form Text Type and the `empty_data` option. ``` php

Symfony Forms
Application Layer
CQRS
DTO
PHP7

When reading my first DDD Java examples I saw a lot of `List`s: ``` java class Order { private Integer ID; private Customer owner; private List ordered; ``` A `List`...

Tactical DDD
Infrastructure Layer
Persistence
Doctrine ORM
Repositories

There are some nice tutorials out there: - http://culttt.com/2014/08/25/implementing-specification-pattern/ @philipbrown For Zend Framework too by @UFOMelkor: - http://programming-php.net/author/ufomelkor/ Another implementation by @mbrevda: - https://github.com/mbrevda/SpecificationPattern And @maximecolin: - https://github.com/maximecolin/satisfaction But there...

Infrastructure Layer
Doctrine ORM
Naming Conventions
Symfony Bundles
Specification Pattern
Repositories

Currently I'm using PHP Arrays for single READ models. Actually it was a performance driven decision since I use them for exporting 100s of rows into a generated PDF. But...

What really interests me is defining the actual aggregate root from the Order POV. In my current company I have to processes: - Customer talks to Employee. Employee logs in,...

Strategic DDD
Domain Layer
Naming Conventions

When trying to use Doctrine ORM Entities with ODM Documents (e.g. MongoDB) most solutions adding extra fields: - http://doctrine-orm.readthedocs.org/projects/doctrine-mongodb-odm/en/latest/cookbook/blending-orm-and-mongodb-odm.html @jmikola - http://de.slideshare.net/spf13/blending-mongodb-and-rdbms-for-ecommerce by @jwage - https://github.com/Atlantic18/DoctrineExtensions/issues/1564#issue-148766564 For me this feels...

Tactical DDD
Domain Layer
Persistence
Doctrine ORM
Doctrine ODM
MongoDB

Coming from: - https://github.com/Atlantic18/DoctrineExtensions/issues/1564#issue-148766564 @l3pp4rd - https://github.com/Atlantic18/DoctrineExtensions/issues/750#issuecomment-214837100 @stof - https://twitter.com/webdevilopers/status/720290618249912320 I never got it working on the Document side - don't know if the XML mapping is complete anyway: http://atlantic18.github.io/DoctrineExtensions/schemas/orm/doctrine-extensions-3.0.xsd...

Tactical DDD
Infrastructure Layer
Persistence
Doctrine ODM
MongoDB
XML Mapping

I'm overriding the template in `app\Resources\GregwarCaptchaBundle\views\Form\captcha.html.twig`: ``` twig {% block captcha_widget %} {% spaceless %} {{ form_label(form) }} {{ 'form.calculator.captcha.help'|trans({}, 'Calculator') }}: {{ form_widget(form) }} {% endspaceless %} {% endblock...

I followed the config in issue https://github.com/mremi/ContactBundle/issues/7: ``` yml mremi_contact: form: captcha_disabled: true captcha_type: genemu_captcha ``` Still the Captcha appears in `dev`. Checking `$this->captchaDisabled` in https://github.com/mremi/ContactBundle/blob/master/Form/Type/ContactType.php#L91 returns `false` via `VarDumper`....

We are using a rather complicated query with a lot of grouping. I will break it down to most interesting parts: ``` php public function getInspectionResultQuery(Specification $specification, ResultModifier $modifier =...

Waiting for user's input
Help user