Delete.php in Drupal 10
Same filename in this branch
- 10 core/lib/Drupal/Core/Database/Query/Delete.php
- 10 core/lib/Drupal/Core/Database/Driver/pgsql/Delete.php
- 10 core/modules/sqlite/src/Driver/Database/sqlite/Delete.php
- 10 core/modules/pgsql/src/Driver/Database/pgsql/Delete.php
- 10 core/modules/mysql/src/Driver/Database/mysql/Delete.php
- 10 core/tests/fixtures/database_drivers/module/corefake/src/Driver/Database/corefakeWithAllCustomClasses/Delete.php
- 10 core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestMysql/Delete.php
- 10 core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestPgsql/Delete.php
- 10 core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestMysqlDeprecatedVersion/Delete.php
Same filename and directory in other branches
File
core/tests/fixtures/database_drivers/module/corefake/src/Driver/Database/corefakeWithAllCustomClasses/Delete.phpView source
<?php
namespace Drupal\corefake\Driver\Database\corefakeWithAllCustomClasses;
use Drupal\Core\Database\Query\Delete as QueryDelete;
/**
* CorefakeWithAllCustomClasses implementation of \Drupal\Core\Database\Delete.
*/
class Delete extends QueryDelete {
}