You are here

public static function Config::hashNameCallback in One Click Upload 7.2

Generate chunk identifier

Parameters

RequestInterface $request:

Return value

string

1 call to Config::hashNameCallback()
ConfigTest::testConfig_hashNameCallback in flowphp/test/Unit/ConfigTest.php

File

flowphp/src/Flow/Config.php, line 111

Class

Config

Namespace

Flow

Code

public static function hashNameCallback(RequestInterface $request) {
  return sha1($request
    ->getIdentifier());
}