Correl Roush
d53e4e74f1
git-svn-id: file:///srv/svn/scanner/trunk@2 a0501263-5b7a-4423-a8ba-1edf086583e7
12 lines
221 B
PHP
12 lines
221 B
PHP
<?php
|
|
class FunctionsModule extends ScannerModule {
|
|
function FunctionsModule() {
|
|
$this->ScannerModule();
|
|
}
|
|
function preScan( $filename ) {
|
|
parent::preScan( $filename );
|
|
}
|
|
}
|
|
|
|
$modules[] = new FunctionsModule();
|
|
?>
|