You are here

public function ScaffoldOptions::getLocation in Drupal 8

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

Gets a specific named location.

Parameters

string $name: The name of the location to fetch.

Return value

string The value of the provided named location

File

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

Class

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

Namespace

Drupal\Composer\Plugin\Scaffold

Code

public function getLocation($name) {
  return $this
    ->hasLocation($name) ? $this
    ->locations()[$name] : FALSE;
}