Val Bancer

Results 35 comments of Val Bancer

> If the query has not been modified... Exactly. The query has been modified by calling `bind()` after `count()`.

The problem I stumbled is that the path to po files used by CakePHP is not compatible with gettext paths. Cake path: src/Locale/de_DE/frontend.po Gettext path: src/Locale/de_DE/LC_MESSAGES/frontend.po So I wonder whether...

Ideally PDT should be able to read phpcs.xml file (path to which would be provided by the user as configuration setting) and apply the code style rules from that file....

Yes, more or less. These issues are related. Although many projects (including ours) do not use PHP CS Fixer but use [PHPCodeSniffer](https://github.com/squizlabs/PHP_CodeSniffer/).

Just to clarify - what I meant is an option to import phpcs.xml file that would be converted to a new Eclipse's formatter xml file. F.ex. a new button "New...

> Would passing the domain to the loader function help here? I am not sure that I fully understand your idea but if this would make the domain available inside...

Let's say both 'frontend' and 'backend' domains would use GettextTranslator. How would GettextTranslator know what domain to use inside `getMessage()` function when calls to `__d('frontend', 'Price')` and `__d('backend', 'Amount')` are...