Larry Garfield

Results 101 comments of Larry Garfield

Yes we should! I actually believe we should use PHPUnit. It's reasonably similar to Simpletest, at least on the test level, and it is far and away the most popular...

1) Sounds good. 2) For the time being, I'd say rip it out entirely. That's too Drupal-specific. We'll have to figure out some other approach later, if we decide one...

The main concern is that with the way Entity API is going in Drupal 8, there won't be a field-save operation. It simply won't exist. You'll have to save the...

Fago is the person we want to talk to here. We need to loop him in. Wim, what you're describing may require using the new TempStore, perhaps? Either way, with...

Hm. Does that mean Enqueue isn't maintained either, as it is based on this package?

@pjcdawkins Thought: Should we be treating each language/version as a target, or should we be treating each stack as a target? Damien is right that a wizard to build up...

If I'm reading this properly, the `--template` flag serves double duty: Either provide a template (in which case it's a short-circuit way to also run `initialize`) or provide a catalog...

cf: Setting readonly properties outside the constructor: https://psalm.dev/r/33b562cf8e Lazy loading readonly properties: https://psalm.dev/r/3d6f55d9a6

Fun fact: The constructor can be called multiple times. (I can't imagine you ever would, but the engine allows it.) https://3v4l.org/lJWCr I get that the common case is constructor-only. However,...

PHP 7 has a lot of nifty new features that help async; I believe @trowski was partially responsible for yield from, for exactly that reason. However, the only features relevant...