| Total Complexity | 3 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | class Copier { |
||
| 13 | |||
| 14 | /** |
||
| 15 | * Drupal\replicate\Replicator definition. |
||
| 16 | * |
||
| 17 | * @var \Drupal\replicate\Replicator |
||
| 18 | */ |
||
| 19 | protected $replicator; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * Constructor. |
||
| 23 | */ |
||
| 24 | public function __construct(Replicator $replicator) { |
||
| 26 | } |
||
| 27 | |||
| 28 | public function makeCopy($entity, $options = null) { |
||
| 39 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.