Romans Malinovskis
Romans Malinovskis
This wouldn't work with default messages though: https://github.com/beberlei/assert/blob/master/lib/Assert/Assertion.php#L2543 ``` php $message = \sprintf(static::generateMessage($message) ?: 'Value "%s" expected to be a defined constant.', $constant); ``` while something like this would work:...
// sorry for slow response. My code generates two type of exceptions - exceptions which must be sent to the client as errors for particular request - exceptions which must...
Would quick-look framework do that?
@georgehristov will looked quickly through, but will look again.
see #208,.
Suggested syntax: ``` php $model->addExpression('bleh', ['..complex formula', 'lazy'=>true]); $model->addField('blob', ['lazy'=>true']); ``` Unlike `system` property which makes fields selected by default (even if onlyFields in effect) lazy will avoid selecting fields...
Use case: password field could be lazy, because we don't like loading passwords.
I'm following this, keep this up, and together with some of my own ideas this should be implemented after I'm finished with Actions. Thanks!
in some persistences, there may NOT BE the id field accessible through get(). I don't want code to rely on `get($this->id_field)`
we should be fine with a workaround. it's not really a bug.