destination = $destination; $this->managed = $isManaged; } /** * Determines whether this scaffold file is managed. * * @return bool * TRUE if this scaffold file is managed, FALSE if not. */ public function isManaged() { return $this->managed; } /** * Gets the destination scaffold file that this result refers to. * * @return \Drupal\Composer\Plugin\Scaffold\ScaffoldFilePath * The destination path for the scaffold result. */ public function destination() { return $this->destination; } }