Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
49839784
Commit
49839784
authored
Jan 28, 2012
by
Crell
Browse files
Add file docblocks to new DB files.
parent
5a5c8307
Changes
70
Hide whitespace changes
Inline
Side-by-side
core/lib/Drupal/Core/Database/Connection.php
View file @
49839784
<?php
/**
* @file
* Definition of Drupal\Core\Database\Connection
*/
namespace
Drupal\Core\Database
;
use
Drupal\Core\Database\TransactionNoActiveException
;
...
...
core/lib/Drupal/Core/Database/ConnectionNotDefinedException.php
View file @
49839784
<?php
/**
* @file
* Definition of Drupal\Core\Database\ConnectionNotDefinedException
*/
namespace
Drupal\Core\Database
;
use
RuntimeException
;
...
...
core/lib/Drupal/Core/Database/Database.php
View file @
49839784
<?php
/**
* @file
* Definition of Drupal\Core\Database\Database
*/
namespace
Drupal\Core\Database
;
/**
...
...
core/lib/Drupal/Core/Database/Driver/mysql/Connection.php
View file @
49839784
<?php
/**
* @file
* Definition of Drupal\Core\Database\Driver\mysql\Connection
*/
namespace
Drupal\Core\Database\Driver\mysql
;
use
Drupal\Core\Database\Database
;
...
...
core/lib/Drupal/Core/Database/Driver/mysql/Delete.php
View file @
49839784
<?php
/**
* @file
* Definition of Drupal\Core\Database\Driver\mysql\Delete
*/
namespace
Drupal\Core\Database\Driver\mysql
;
use
Drupal\Core\Database\Query\Delete
as
QueryDelete
;
...
...
core/lib/Drupal/Core/Database/Driver/mysql/Insert.php
View file @
49839784
<?php
/**
* @file
* Definition of Drupal\Core\Database\Driver\mysql\Insert
*/
namespace
Drupal\Core\Database\Driver\mysql
;
use
Drupal\Core\Database\Query\Insert
as
QueryInsert
;
...
...
core/lib/Drupal/Core/Database/Driver/mysql/Install/Tasks.php
View file @
49839784
<?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
;
...
...
core/lib/Drupal/Core/Database/Driver/mysql/Merge.php
View file @
49839784
<?php
/**
* @file
* Definition of Drupal\Core\Database\Driver\mysql\Merge
*/
namespace
Drupal\Core\Database\Driver\mysql
;
use
Drupal\Core\Database\Query\Merge
as
QueryMerge
;
...
...
core/lib/Drupal/Core/Database/Driver/mysql/Schema.php
View file @
49839784
<?php
/**
* @file
* Definition of Drupal\Core\Database\Driver\mysql\Schema
*/
namespace
Drupal\Core\Database\Driver\mysql
;
use
Drupal\Core\Database\Database
;
...
...
core/lib/Drupal/Core/Database/Driver/mysql/Select.php
View file @
49839784
<?php
/**
* @file
* Definition of Drupal\Core\Database\Driver\mysql\Select
*/
namespace
Drupal\Core\Database\Driver\mysql
;
use
Drupal\Core\Database\Query\Select
as
QuerySelect
;
...
...
core/lib/Drupal/Core/Database/Driver/mysql/Transaction.php
View file @
49839784
<?php
/**
* @file
* Definition of Drupal\Core\Database\Driver\mysql\Transaction
*/
namespace
Drupal\Core\Database\Driver\mysql
;
use
Drupal\Core\Database\Transaction
as
DatabaseTransaction
;
...
...
core/lib/Drupal/Core/Database/Driver/mysql/Truncate.php
View file @
49839784
<?php
/**
* @file
* Definition of Drupal\Core\Database\Driver\mysql\Truncate
*/
namespace
Drupal\Core\Database\Driver\mysql
;
use
Drupal\Core\Database\Query\Truncate
as
QueryTruncate
;
...
...
core/lib/Drupal/Core/Database/Driver/mysql/Update.php
View file @
49839784
<?php
/**
* @file
* Definition of Drupal\Core\Database\Driver\mysql\Update
*/
namespace
Drupal\Core\Database\Driver\mysql
;
use
Drupal\Core\Database\Query\Update
as
QueryUpdate
;
...
...
core/lib/Drupal/Core/Database/Driver/pgsql/Connection.php
View file @
49839784
<?php
/**
* @file
* Definition of Drupal\Core\Database\Driver\pgsql\Connection
*/
namespace
Drupal\Core\Database\Driver\pgsql
;
use
Drupal\Core\Database\Database
;
...
...
core/lib/Drupal/Core/Database/Driver/pgsql/Delete.php
View file @
49839784
<?php
/**
* @file
* Definition of Drupal\Core\Database\Driver\pgsql\Delete
*/
namespace
Drupal\Core\Database\Driver\pgsql
;
use
Drupal\Core\Database\Query\Delete
as
QueryDelete
;
...
...
core/lib/Drupal/Core/Database/Driver/pgsql/Insert.php
View file @
49839784
<?php
/**
* @file
* Definition of Drupal\Core\Database\Driver\pgsql\Insert
*/
namespace
Drupal\Core\Database\Driver\pgsql
;
use
Drupal\Core\Database\Database
;
...
...
core/lib/Drupal/Core/Database/Driver/pgsql/Install/Tasks.php
View file @
49839784
<?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
;
...
...
core/lib/Drupal/Core/Database/Driver/pgsql/Merge.php
View file @
49839784
<?php
/**
* @file
* Definition of Drupal\Core\Database\Driver\pgsql\Merge
*/
namespace
Drupal\Core\Database\Driver\pgsql
;
use
Drupal\Core\Database\Query\Merge
as
QueryMerge
;
...
...
core/lib/Drupal/Core/Database/Driver/pgsql/Schema.php
View file @
49839784
<?php
/**
* @file
* Definition of Drupal\Core\Database\Driver\pgsql\Schema
*/
namespace
Drupal\Core\Database\Driver\pgsql
;
use
Drupal\Core\Database\Database
;
...
...
core/lib/Drupal/Core/Database/Driver/pgsql/Select.php
View file @
49839784
<?php
/**
* @file
* Definition of Drupal\Core\Database\Driver\pgsql\Select
*/
namespace
Drupal\Core\Database\Driver\pgsql
;
use
Drupal\Core\Database\Query\Select
as
QuerySelect
;
...
...
Prev
1
2
3
4
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment