fetchesCurrency = $fetchesCurrency; $this->fetchesSegment = $fetchesSegment; $this->createsSegmentConstant = $createsSegmentConstant; } /** * Run the database seeds. * * @return void * @throws \App\Classes\Exceptions\MalformedRequestException */ public function run() { $object = new ConstantObject('System Primary Currency', SegmentConstants::SYSTEM_PRIMARY_CURRENCY, ['id' => $this->fetchesCurrency->execute(['name' => country('my')->getName()])->id]); $this->createsSegmentConstant->execute($this->fetchesSegment->execute(['Standard Segment']), $object); } }