Add file docblocks to new DB files.

8.0.x
Larry Garfield 2012-01-28 18:27:11 -06:00
parent 5a5c830761
commit 49839784e7
70 changed files with 349 additions and 5 deletions

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Connection
*/
namespace Drupal\Core\Database;
use Drupal\Core\Database\TransactionNoActiveException;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\ConnectionNotDefinedException
*/
namespace Drupal\Core\Database;
use RuntimeException;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Database
*/
namespace Drupal\Core\Database;
/**

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Driver\mysql\Connection
*/
namespace Drupal\Core\Database\Driver\mysql;
use Drupal\Core\Database\Database;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Driver\mysql\Delete
*/
namespace Drupal\Core\Database\Driver\mysql;
use Drupal\Core\Database\Query\Delete as QueryDelete;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Driver\mysql\Insert
*/
namespace Drupal\Core\Database\Driver\mysql;
use Drupal\Core\Database\Query\Insert as QueryInsert;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Driver\mysql\Install\Tasks
*/
namespace Drupal\Core\Database\Driver\mysql\Install;
use Drupal\Core\Database\Install\Tasks as InstallTasks;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Driver\mysql\Merge
*/
namespace Drupal\Core\Database\Driver\mysql;
use Drupal\Core\Database\Query\Merge as QueryMerge;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Driver\mysql\Schema
*/
namespace Drupal\Core\Database\Driver\mysql;
use Drupal\Core\Database\Database;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Driver\mysql\Select
*/
namespace Drupal\Core\Database\Driver\mysql;
use Drupal\Core\Database\Query\Select as QuerySelect;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Driver\mysql\Transaction
*/
namespace Drupal\Core\Database\Driver\mysql;
use Drupal\Core\Database\Transaction as DatabaseTransaction;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Driver\mysql\Truncate
*/
namespace Drupal\Core\Database\Driver\mysql;
use Drupal\Core\Database\Query\Truncate as QueryTruncate;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Driver\mysql\Update
*/
namespace Drupal\Core\Database\Driver\mysql;
use Drupal\Core\Database\Query\Update as QueryUpdate;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Driver\pgsql\Connection
*/
namespace Drupal\Core\Database\Driver\pgsql;
use Drupal\Core\Database\Database;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Driver\pgsql\Delete
*/
namespace Drupal\Core\Database\Driver\pgsql;
use Drupal\Core\Database\Query\Delete as QueryDelete;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Driver\pgsql\Insert
*/
namespace Drupal\Core\Database\Driver\pgsql;
use Drupal\Core\Database\Database;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Driver\pgsql\Install\Tasks
*/
namespace Drupal\Core\Database\Driver\pgsql\Install;
use Drupal\Core\Database\Install\Tasks as InstallTasks;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Driver\pgsql\Merge
*/
namespace Drupal\Core\Database\Driver\pgsql;
use Drupal\Core\Database\Query\Merge as QueryMerge;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Driver\pgsql\Schema
*/
namespace Drupal\Core\Database\Driver\pgsql;
use Drupal\Core\Database\Database;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Driver\pgsql\Select
*/
namespace Drupal\Core\Database\Driver\pgsql;
use Drupal\Core\Database\Query\Select as QuerySelect;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Driver\pgsql\Transaction
*/
namespace Drupal\Core\Database\Driver\mysql;
use Drupal\Core\Database\Transaction as DatabaseTransaction;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Driver\pgsql\Truncate
*/
namespace Drupal\Core\Database\Driver\pgsql;
use Drupal\Core\Database\Query\Truncate as QueryTruncate;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Driver\pgsql\Update
*/
namespace Drupal\Core\Database\Driver\pgsql;
use Drupal\Core\Database\Database;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Driver\sqlite\Connection
*/
namespace Drupal\Core\Database\Driver\sqlite;
use Drupal\Core\Database\Database;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Driver\sqlite\Delete
*/
namespace Drupal\Core\Database\Driver\sqlite;
use Drupal\Core\Database\Query\Delete as QueryDelete;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Driver\sqlite\Insert
*/
namespace Drupal\Core\Database\Driver\sqlite;
use Drupal\Core\Database\Query\Insert as QueryInsert;

View File

@ -1,5 +1,9 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Driver\sqlite\Install\Tasks
*/
namespace Drupal\Core\Database\Driver\sqlite\Install;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Driver\sqlite\Merge
*/
namespace Drupal\Core\Database\Driver\sqlite;
use Drupal\Core\Database\Query\Merge as QueryMerge;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Driver\sqlite\Schema
*/
namespace Drupal\Core\Database\Driver\sqlite;
use Drupal\Core\Database\SchemaObjectExistsException;
@ -8,11 +13,6 @@ use Drupal\Core\Database\Schema as DatabaseSchema;
use Exception;
/**
* @file
* Database schema code for SQLite databases.
*/
/**
* @ingroup schemaapi

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Driver\sqlite\Select
*/
namespace Drupal\Core\Database\Driver\sqlite;
use Drupal\Core\Database\Query\Select as QuerySelect;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Driver\sqlite\Statement
*/
namespace Drupal\Core\Database\Driver\sqlite;
use Drupal\Core\Database\StatementPrefetch;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Driver\sqlite\Transaction
*/
namespace Drupal\Core\Database\Driver\sqlite;
use Drupal\Core\Database\Transaction as DatabaseTransaction;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Driver\sqlite\Truncate
*/
namespace Drupal\Core\Database\Driver\sqlite;
use Drupal\Core\Database\Query\Truncate as QueryTruncate;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Driver\sqlite\Update
*/
namespace Drupal\Core\Database\Driver\sqlite;
use Drupal\Core\Database\Query\Condition;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\DriverNotSpecifiedException
*/
namespace Drupal\Core\Database;
use RuntimeException;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Install\TaskException
*/
namespace Drupal\Core\Database\Install;
use RuntimeException;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Install\Tasks
*/
namespace Drupal\Core\Database\Install;
use Drupal\Core\Database\Database;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Log
*/
namespace Drupal\Core\Database;
/**

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Query\AlterableInterface
*/
namespace Drupal\Core\Database\Query;
/**

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Query\Condition
*/
namespace Drupal\Core\Database\Query;
use Drupal\Core\Database\Connection;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Query\ConditionInterface
*/
namespace Drupal\Core\Database\Query;
use Drupal\Core\Database\Connection;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Query\Delete
*/
namespace Drupal\Core\Database\Query;
use Drupal\Core\Database\Database;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Query\ExtendableInterface
*/
namespace Drupal\Core\Database\Query;
/**

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Query\FieldsOverlapExceptoin
*/
namespace Drupal\Core\Database\Query;
use RuntimeException;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Query\Insert
*/
namespace Drupal\Core\Database\Query;
use Drupal\Core\Database\Database;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Query\InvalidMergeQueryException
*/
namespace Drupal\Core\Database\Query;
use RuntimeException;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Query\Merge
*/
namespace Drupal\Core\Database\Query;
use Drupal\Core\Database\Database;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Query\NoFieldsException
*/
namespace Drupal\Core\Database\Query;
use Exception;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Query\PlaceholderInterface
*/
namespace Drupal\Core\Database\Query;
/**

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Query\Query
*/
namespace Drupal\Core\Database\Query;
use Drupal\Core\Database\Database;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Query\Select
*/
namespace Drupal\Core\Database\Query;
use Drupal\Core\Database\Database;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Query\SelectExtender
*/
namespace Drupal\Core\Database\Query;
use Drupal\Core\Database\Connection;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Query\SelectInterface
*/
namespace Drupal\Core\Database\Query;
/**

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Query\Truncate
*/
namespace Drupal\Core\Database\Query;
use Drupal\Core\Database\Database;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Query\Update
*/
namespace Drupal\Core\Database\Query;
use Drupal\Core\Database\Database;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Schema
*/
namespace Drupal\Core\Database;
use Drupal\Core\Database\SchemaObjectExistsException;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\SchemaException
*/
namespace Drupal\Core\Database;
use RuntimeException;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\SchemaObjectDoesNotExistException
*/
namespace Drupal\Core\Database;
/**

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\SchemaObjectExistsException
*/
namespace Drupal\Core\Database;
/**

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\StatementBase
*/
namespace Drupal\Core\Database;
use PDO;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\StatementEmpty
*/
namespace Drupal\Core\Database;
use Iterator;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\StatementInterface
*/
namespace Drupal\Core\Database;
use Traversable;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\StatementPrefetch
*/
namespace Drupal\Core\Database;
use Drupal\Core\Database\Connection;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\Transaction
*/
namespace Drupal\Core\Database;
/**

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\TransactionCommitFailedException
*/
namespace Drupal\Core\Database;
/**

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\TransactionException
*/
namespace Drupal\Core\Database;
use RuntimeException;

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\TransactionExplicitCommitNotAllowedException
*/
namespace Drupal\Core\Database;
/**

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\TransactionNameNonUniqueException
*/
namespace Drupal\Core\Database;
/**

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\TransactionNoActiveException
*/
namespace Drupal\Core\Database;
/**

View File

@ -1,5 +1,10 @@
<?php
/**
* @file
* Definition of Drupal\Core\Database\TransactionOutOfOrderException
*/
namespace Drupal\Core\Database;
/**