Flitch\Rule\Manager::__construct PHP Method

__construct() public method

Create a new rule manager.
public __construct ( string $globalPath, string $localPath, $standard ) : void
$globalPath string
$localPath string
return void
    public function __construct($globalPath, $localPath, $standard)
    {
        $this->loader = new Loader($globalPath, $localPath);
        $this->globalPath = rtrim($globalPath, '/\\');
        $this->localPath = rtrim($localPath, '/\\');
        $this->standard = $standard;
        $this->loadStandard();
    }