Sprockets\Cache::process PHP Метод

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

public process ( )
    public function process()
    {
        if ($this->processed) {
            return $this->getFilename();
        }
        $this->processed = true;
        if (!$this->isFresh()) {
            $this->write();
        }
        return $this->getFilename();
    }