crellbar / prophecy-extensions
Prophecy promise for fluid interfaces
Installs: 12 795
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- phpspec/prophecy: ^1.5
This package is not auto-updated.
Last update: 2025-03-30 08:04:07 UTC
README
Install via composer
php ./composer.phar require --dev crellbar/prophecy-extensions
FluidPromise
Provides a simple prophecy promise of a fluid interface.
Despite being somewhat against fluid interfaces I built this library as the project team I'm contracting with uses them. Before committing to using fluid interfaces in your code I strongly urge you to read up on the numerous cons that I believe outweigh the small pro of readability. Here's one source https://ocramius.github.io/blog/fluent-interfaces-are-evil/
Usage
use Crellbar\ProphecyExtensions\FluidPromise as Fluid; /** @var ObjectProphecy $prophecy */ ... // setup prophecy in the usual fashion for the test tool you're using $prophecy->myMethod(Argument::any())->will(new Fluid());
VoidPromise
Usage
use Crellbar\ProphecyExtensions\VoidPromise as VoidP; /** @var ObjectProphecy $prophecy */ ... // setup prophecy in the usual fashion for the test tool you're using $prophecy->myMethod(Argument::any())->will(new VoidP());