function ScaffoldFilePath::__construct
ScaffoldFilePath constructor.
Parameters
string $path_type: The type of scaffold file this is,'autoload', 'dest' or 'src'.
string $package_name: The name of the package containing the file.
string $rel_path: The relative path to the file.
string $full_path: The full path to the file.
File
- 
              composer/Plugin/ Scaffold/ ScaffoldFilePath.php, line 63 
Class
- ScaffoldFilePath
- Manage the path to a file to scaffold.
Namespace
Drupal\Composer\Plugin\ScaffoldCode
public function __construct($path_type, $package_name, $rel_path, $full_path) {
  $this->type = $path_type;
  $this->packageName = $package_name;
  $this->relativePath = $rel_path;
  $this->fullPath = $full_path;
  // Ensure that the full path really is a full path. We do not use
  // 'realpath' here because the file specified by the full path might
  // not exist yet.
  $fs = new Filesystem();
  if (!$fs->isAbsolutePath($this->fullPath)) {
    $this->fullPath = getcwd() . '/' . $this->fullPath;
  }
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
