Hostnet\Component\Webpack\Asset\Tracker::boot PHP Method

boot() private method

Runtime initialize this tracker.
private boot ( )
    private function boot()
    {
        if ($this->booted) {
            return;
        }
        $this->booted = true;
        foreach ($this->finder->findAllTemplates() as $reference) {
            $this->addTemplate($reference);
        }
        foreach (array_keys($this->bundle_paths) as $name) {
            if (false !== ($resolved_path = $this->resolveResourcePath('@' . $name))) {
                $this->aliases['@' . $name] = $resolved_path;
                $this->addPath($resolved_path);
            }
        }
        $this->profiler->set('bundles', $this->aliases);
        $this->profiler->set('templates', $this->templates);
    }