
| Current Path : /var/www/html/rocksensor/web/core/modules/migrate/src/Plugin/migrate/source/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/rocksensor/web/core/modules/migrate/src/Plugin/migrate/source/DummyQueryTrait.php |
<?php
namespace Drupal\migrate\Plugin\migrate\source;
/**
* Provides a dummy select query object for source plugins.
*
* Trait providing a dummy select query object for source plugins based on
* SqlBase which override initializeIterator() to obtain their data from other
* SqlBase services instead of a direct query. This ensures that query() returns
* a valid object, even though it is not used for iteration.
*/
trait DummyQueryTrait {
/**
* {@inheritdoc}
*/
public function query() {
// Pass an arbitrary table name - the query should never be executed
// anyway.
$query = $this->select(uniqid(), 's')
->range(0, 1);
$query->addExpression('1');
return $query;
}
/**
* {@inheritdoc}
*/
protected function doCount() {
return 1;
}
}