Slide 23
Slide 23 text
VERBS, NOUNS, BEHAVIOUR
DISCOVERING
/**
* @Given a ticket for the :conference conference priced EUR:price
* was added to the marketplace
*/
public function aTicketForTheConferencePriced($conference, $price)
{
$money = Money::EUR((int) $price);
$ticket = Ticket::forConferencePriced($conference, $money);
$this->marketPlace->add($ticket);
}