You are here

public function Filesystem::__construct in Automatic Updates 8

Filesystem constructor.

Parameters

string $app_root: The app root.

1 call to Filesystem::__construct()
ReadOnlyFilesystem::__construct in src/ReadinessChecker/ReadOnlyFilesystem.php
ReadOnlyFilesystem constructor.
1 method overrides Filesystem::__construct()
ReadOnlyFilesystem::__construct in src/ReadinessChecker/ReadOnlyFilesystem.php
ReadOnlyFilesystem constructor.

File

src/ReadinessChecker/Filesystem.php, line 33

Class

Filesystem
Base class for filesystem checkers.

Namespace

Drupal\automatic_updates\ReadinessChecker

Code

public function __construct($app_root) {
  $this->rootPath = (string) $app_root;
}