public function setUp()
 {
     $this->environment = $this->prophesize(EnvironmentInterface::class);
     $this->output = $this->prophesize(OutputInterface::class);
     $this->listener = new EnvironmentListener($this->environment->reveal(), $this->output->reveal());
 }