public function Fixtures::appendOp in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/Tests/Composer/Plugin/Scaffold/Fixtures.php \Drupal\Tests\Composer\Plugin\Scaffold\Fixtures::appendOp()
Creates an AppendOp 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\AppendOp An append operation object.
File
- core/
tests/ Drupal/ Tests/ Composer/ Plugin/ Scaffold/ Fixtures.php, line 212
Class
- Fixtures
- Convenience class for creating fixtures.
Namespace
Drupal\Tests\Composer\Plugin\ScaffoldCode
public function appendOp($project_name, $source) {
$source_path = $this
->sourcePath($project_name, $source);
return new AppendOp(NULL, $source_path);
}