function Fixtures::replaceOp

Same name in other branches
  1. 9 core/tests/Drupal/Tests/Composer/Plugin/Scaffold/Fixtures.php \Drupal\Tests\Composer\Plugin\Scaffold\Fixtures::replaceOp()
  2. 8.9.x core/tests/Drupal/Tests/Composer/Plugin/Scaffold/Fixtures.php \Drupal\Tests\Composer\Plugin\Scaffold\Fixtures::replaceOp()
  3. 10 core/tests/Drupal/Tests/Composer/Plugin/Scaffold/Fixtures.php \Drupal\Tests\Composer\Plugin\Scaffold\Fixtures::replaceOp()

Creates a ReplaceOp fixture.

Parameters

string $project_name: The name of the project to fetch; $package_name is "fixtures/$project_name".

string $source: The name of the asset; path is "assets/$source".

Return value

\Drupal\Composer\Plugin\Scaffold\Operations\ReplaceOp A replace operation object.

File

core/tests/Drupal/Tests/Composer/Plugin/Scaffold/Fixtures.php, line 197

Class

Fixtures
Convenience class for creating fixtures.

Namespace

Drupal\Tests\Composer\Plugin\Scaffold

Code

public function replaceOp($project_name, $source) {
    $source_path = $this->sourcePath($project_name, $source);
    return new ReplaceOp($source_path, TRUE);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.