getRan() public method

Get the ran mappings.
public getRan ( ) : array
return array
Exemplo n.º 1
0
 public function run($path, array $options = [])
 {
     $files = $this->getMappingFiles($path);
     $ran = $this->repository->getRan();
     $mappings = array_diff($files, $ran);
     $this->requireFiles($path, $mappings);
     $this->runMappingList($mappings, $options);
 }