QueryExecutionVoidInterface.php
Same filename and directory in other branches
Namespace
Drupal\Core\Database\QueryFile
-
core/
lib/ Drupal/ Core/ Database/ Query/ QueryExecutionVoidInterface.php
View source
<?php
namespace Drupal\Core\Database\Query;
/**
* Interface for queries whose execution does not return a value.
*
* This is typical of DDL and DML SQL statements.
*/
interface QueryExecutionVoidInterface {
/**
* Runs the query against the database.
*/
public function execute() : void;
}
Interfaces
| Title | Deprecated | Summary |
|---|---|---|
| QueryExecutionVoidInterface | Interface for queries whose execution does not return a value. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.