You are here

public function TempFileManager::__construct in Backup and Migrate 8.4

Build the manager with the given adapter. This manager needs the adapter to create the actual temp files.

Parameters

\BackupMigrate\Core\File\TempFileAdapterInterface $adapter:

File

lib/backup_migrate_core/src/File/TempFileManager.php, line 23

Class

TempFileManager
Class TempFileManager.

Namespace

BackupMigrate\Core\File

Code

public function __construct(TempFileAdapterInterface $adapter) {
  $this->adapter = $adapter;
}