Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. ScaffoldFileInfo.php

function ScaffoldFileInfo::hasChanged

Returns TRUE if the target does not exist or has changed.

Return value

bool

File

composer/Plugin/Scaffold/ScaffoldFileInfo.php, line 131

Class

ScaffoldFileInfo
Data object that keeps track of one scaffold file.

Namespace

Drupal\Composer\Plugin\Scaffold

Code

public final function hasChanged() {
    $path = $this->destination()
        ->fullPath();
    if (!file_exists($path)) {
        return TRUE;
    }
    return $this->op()
        ->contents() !== file_get_contents($path);
}
RSS feed
Powered by Drupal