hedronium\Jables\Checker::__construct PHP Метод

__construct() публичный Метод

public __construct ( $app, Illuminate\Filesystem\Filesystem $fs, Loader $loader )
$fs Illuminate\Filesystem\Filesystem
$loader Loader
    public function __construct($app, Filesystem $fs, Loader $loader)
    {
        $this->fs = $fs;
        $this->app = $app;
        $this->loader = $loader;
        $this->files = array_values($loader->paths());
        $this->parser = new JsonParser();
        $this->schema_retriever = new \JsonSchema\Uri\UriRetriever();
        $this->schema_resolver = new \JsonSchema\RefResolver($this->schema_retriever);
        $this->schema_validator = new \JsonSchema\Validator();
    }