DB\Jig::__construct PHP Method

__construct() public method

Instantiate class
public __construct ( $dir = NULL, $format = self::FORMAT_JSON )
$dir string
$format int
    function __construct($dir = NULL, $format = self::FORMAT_JSON)
    {
        if ($dir && !is_dir($dir)) {
            mkdir($dir, \Base::MODE, TRUE);
        }
        $this->uuid = \Base::instance()->hash($this->dir = $dir);
        $this->format = $format;
    }