David Grudl

Results 464 comments of David Grudl

@Kubina1232 Did you find out where the problem is?

Matching is (surprisingly) quite a complex matter. Maybe it is a topic for a separate package. Matching in Tester I don't find so ingenious, because I'm still unable to remember...

I think it's better to use IntlDateFormatter::formatObject

The fix is this line. I don't understand why it's not working for you. https://github.com/nette/utils/blob/v3.2.7/src/Utils/DateTime.php#L102

Btw, what's the point of the minus character in charlist?

I think the current behaviour is correct.

I think there's a missing `$ids`, or am I misunderstanding? ```php $futurePersons = new Future(function (array $ids) use ($db) { return $db->query('SELECT id, first_name, last_name FROM person')->fetchAssoc('id'); }); ```