Flitch\Rule\Loader::__construct PHP Method

__construct() public method

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