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

Breadcrumb

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

function ScaffoldOptions::overrideSymlink

Creates a new scaffold options object with an overridden 'symlink' value.

Parameters

bool $symlink: Whether symlinking should be enabled or not.

Return value

self The scaffold options object representing the provided scaffold options

File

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

Class

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

Namespace

Drupal\Composer\Plugin\Scaffold

Code

public function overrideSymlink($symlink) {
    return $this->override([
        'symlink' => $symlink,
    ]);
}
RSS feed
Powered by Drupal