crellbar/prophecy-extensions

Prophecy promise for fluid interfaces

Installs: 13 099

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/crellbar/prophecy-extensions

v1.1 2018-03-29 09:31 UTC

This package is not auto-updated.

Last update: 2025-09-28 10:26:54 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());