Vasil Rangelov

Results 163 comments of Vasil Rangelov

Maybe introduce the renamed method before then (say, 6.2), and make then() an alias to it, to give users a cross working version? And add a deprecation warning log, to...

Note for my future self or anyone who may be willing to try implementing some integrated support of this... Postgresql's triggers require the name of a function to be called...

> One note - `Ref` needs to stay as type, it cant be a class. ok. Edited the above example, before I forget. > I have no idea what's this...

> and if this is all explained in the links you provided, please allow me a few days, I don't have time to read through them this weekend Sure thing...

What do you mean exactly? Like, can you describe what you would do if you were to look this up manually?

I don't think verifyHmac() would work for the scenario I'm talking about... I mean, the HMAC is stored in the DB next to the encrypted data (or within it... either...

> @develart-projects i'm stuck. Is it me, or the tests? `localhost.localdomain` is valid when falling back to `checkdnsrr()` , not? `checkdnsrr()` does a DNS lookup. While the domain in the...

> > 1. Zend_Validate_HostnameTest::testBasic > > localhost.localdomain > > Failed asserting that true matches expected false. > > Need some advice how to fix it. Add an option. Default to...

Who in their right mind ~would write~ has ever written ```php $row->__unset($columnA)->offsetUnset($columnB); ``` ? This is the only way in which a fluent interface on those methods can work. The...

The question is how often do we think someone actually used this form over ```php $row->offsetUnset($x); $row->offsetUnset($y); // or unset($row[$x]); unset($row[$y]); unset($row[$x], $row[$y]); unset($row->{$x}); unset($row->{$y}); unset($row->{$x}, $row->{$y}); ``` Considering that...