for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace AardsGerds\Game\Event\Story\FirstChapter\WoodsTravel;
use AardsGerds\Game\Event\DecisionCollection;
use AardsGerds\Game\Event\TravelEvent;
final class WoodsTravelEvent extends TravelEvent
{
public function __construct()
parent::__construct(
new WoodsTravelContext(),
new DecisionCollection([
new ReturnToCampDecision(),
]),
);
}