Ivan Kurnosov
Ivan Kurnosov
Okay, I was wrong, it's possible to implement with `invariant` :facepalm:
There is `Psl\invariant`: ```php invariant($x !== null, 'must not be null'); ``` And indeed - I also personally prefer to use `not null` assertion other than `it should be of...
It also is important to remember - that this suggestion only helps for functions that return one value. But functions could return 0, or more than 1 of them. Counter...
(from a person who never used inheritance in DB/ORMs entities): it may be a problem when there is no constraint that guarantees that both `Bar` and `Foo` don't collide their...
That's how one could implement that in the most naive and harmless way: ```php use Fabiang\Xmpp\EventListener\EventListenerInterface; use Fabiang\Xmpp\EventListener\Stream\StartTls; use Fabiang\Xmpp\Protocol\DefaultImplementation; class DefaultImplementationWithoutStarttls extends DefaultImplementation { public function registerListener(EventListenerInterface $eventListener) {...
Dropbox Screen Grabber 2.0 - (27.05.2010)
I'm already using it :-S It is a typo in changelog that it is still 2.0 :-S
> But in some setup you can have multiple level of proxy. why not iterate through them then? If there are multiple proxies - then just check whether the next...
It would be hard to guarantee, but from the changelog it looks there were no breaking changes: http://www.thekelleys.org.uk/dnsmasq/CHANGELOG
When somebody makes a decision to use a non-immutable tag - they need to weight the potential risks.