29 lines
528 B
PHP
29 lines
528 B
PHP
<?php
|
|
|
|
namespace Drupal\Composer\Plugin\Scaffold\Operations;
|
|
|
|
use Drupal\Composer\Plugin\Scaffold\ScaffoldFilePath;
|
|
|
|
/**
|
|
* Provides default behaviors for operations.
|
|
*
|
|
* @internal
|
|
*/
|
|
abstract class AbstractOperation implements OperationInterface {
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function combineWithConjunctionTarget(OperationInterface $conjunction_target) {
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function missingConjunctionTarget(ScaffoldFilePath $destination) {
|
|
return $this;
|
|
}
|
|
|
|
}
|