codeformunich/Muenchen-Transparent

View on GitHub
protected/commands/Reindex_RechtCommand.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

//define("VERYFAST", true);

class Reindex_RechtCommand extends CConsoleCommand
{
    public function run($args)
    {
        $parser = new StadtrechtParser();
        $parser->parseAlle();
    }
}