You are here

public function ScaffoldOptions::symlink in Drupal 8

Same name and namespace in other branches
  1. 9 composer/Plugin/Scaffold/ScaffoldOptions.php \Drupal\Composer\Plugin\Scaffold\ScaffoldOptions::symlink()

Determines if symlink mode is set.

Return value

bool Whether or not 'symlink' mode

File

composer/Plugin/Scaffold/ScaffoldOptions.php, line 159

Class

ScaffoldOptions
Per-project options from the 'extras' section of the composer.json file.

Namespace

Drupal\Composer\Plugin\Scaffold

Code

public function symlink() {
  return $this->options['symlink'];
}