You are here

public function File::_move_uploaded_file in One Click Upload 7.2

This method is used only for testing

@private @codeCoverageIgnore

Parameters

string $filePath:

string $destinationPath:

Return value

bool

1 call to File::_move_uploaded_file()
File::saveChunk in flowphp/src/Flow/File.php
Save chunk

File

flowphp/src/Flow/File.php, line 229

Class

File

Namespace

Flow

Code

public function _move_uploaded_file($filePath, $destinationPath) {
  return move_uploaded_file($filePath, $destinationPath);
}