PHPUnit prophesize a method without exact arguments
use Prophecy\Argument;
$repository->create(Argument::cetera())->shouldBeCalled()
any()
matches any single value where cetera
matches all values to the rest of the signature.
use Prophecy\Argument;
$repository->create(Argument::any())->shouldBeCalled()