Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / taxonomy / src / Plugin / migrate / source / d6 / TermNodeRevision.php
1 <?php
2
3 namespace Drupal\taxonomy\Plugin\migrate\source\d6;
4
5 /**
6  * Source returning tids from the term_node table for the non-current revision.
7  *
8  * @MigrateSource(
9  *   id = "d6_term_node_revision",
10  *   source_module = "taxonomy"
11  * )
12  */
13 class TermNodeRevision extends TermNode {
14
15   /**
16    * {@inheritdoc}
17    */
18   const JOIN = 'tn.nid = n.nid AND tn.vid != n.vid';
19
20 }