enabled() public method

Get list of enabled modules.
public enabled ( ) : array
return array
Esempio n. 1
0
 /** @test */
 public function it_returns_all_enabled_modules()
 {
     $this->repository->addLocation(__DIR__ . '/stubs');
     $this->assertCount(1, $this->repository->getByStatus(1));
     $this->assertCount(1, $this->repository->enabled());
 }