We have this method in one of our command files:
public function setGateway(Church $church)
{
$this->gateway = new GV\Library\Gateway\FellowshipOneGateway($church);
return true;
}
I am trying to set up some testing but not sure how I should setup this FellowshipOneGateway for dependency injection with passing the $church object as well.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community