You are here

protected function TestDiskSpaceNonSameDisk::areSameLogicalDisk in Automatic Updates 8

Determine if the root and vendor file system are the same logical disk.

Parameters

string $root: Root file path.

string $vendor: Vendor file path.

Return value

bool TRUE if same file system, FALSE otherwise.

Overrides Filesystem::areSameLogicalDisk

File

tests/src/Kernel/ReadinessChecker/DiskSpaceTest.php, line 66

Class

TestDiskSpaceNonSameDisk
Class TestDiskSpaceNonSameDisk.

Namespace

Drupal\Tests\automatic_updates\Kernel\ReadinessChecker

Code

protected function areSameLogicalDisk($root, $vendor) {
  return FALSE;
}