diff --git a/Scanner.php b/Scanner.php index 2061303..b3aff97 100644 --- a/Scanner.php +++ b/Scanner.php @@ -48,9 +48,16 @@ class Scanner extends Component } $this->load_directory($value->getRealPath()); } else if ($value->getExtension() == 'php') { + + $mic = microtime(true); $this->load_file($value->getRealPath()); + + if (microtime(true) - $mic > 0.005) { + $this->files[$value->getRealPath()] = microtime(true) - $mic; + } } } + var_dump($this->files); }