public function setStubPath($stubPath) { $this->stubPath = $stubPath; return $this; }
/** @test */ public function it_can_get_and_set_the_stubs_path() { $this->repository->setStubPath('some/stub/path'); $this->assertEquals('some/stub/path', $this->repository->getStubPath()); }