getByStatus() public method

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