Dmitrii Poddubnyi
Dmitrii Poddubnyi
it's indeed a missing feature Update: I found a workaround by using tinyproxy with the following configuration: ``` Port 8080 upstream socks5 localhost:8000 Allow 0.0.0.0/0 ```
I'm using helpy in docker and encountered the same issue. If I replace site_url in /helpy/config/settings.yml and restart container it starts working as expected. I moved settings.yml out of docker...
@tyler-sommer, I have no complicated logic, so i extracted it to security.yml and removed JMSSecurityExtraBundle with 3 its deps. ``` access_control: - { path: ^/login$, role: IS_AUTHENTICATED_ANONYMOUSLY } - {...
Just my 2 cents: I usually add the most critical properties to the DTO's constructor. It reduces the number of lines, e.g, using `$dto = new FoobarData('value1', 'value2')` instead of...
Indeed @mablae, getters/setters are more flexible. Probably, it'd be sensible for them to be configurable in make:dto - either use getters/setters or public properties. ``` class FoobarData { private $acme1;...
@Pierstoval It's only for some properties, not for all of them, because having more than 4-5 arguments in constructor makes it useless if you want to specify only last argument,...
+1
The exception throws even on entities that not related to the entities that i serialize. Annotation way @JMS\Discriminator(disabled=true)