Issue #2506655 by pguillard, joshi.rohit100: Database Schema class has no doc block

8.0.x
Alex Pott 2015-06-22 15:58:29 -05:00
parent 8d3755c8f4
commit c65b82f4f8
1 changed files with 4 additions and 1 deletions

View File

@ -2,7 +2,7 @@
/**
* @file
* Definition of Drupal\Core\Database\Schema
* Contains \Drupal\Core\Database\Schema.
*/
namespace Drupal\Core\Database;
@ -11,6 +11,9 @@ use Drupal\Core\Database\SchemaObjectExistsException;
use Drupal\Core\Database\Query\Condition;
use Drupal\Core\Database\Query\PlaceholderInterface;
/**
* Provides a base implementation for Database Schema.
*/
abstract class Schema implements PlaceholderInterface {
protected $connection;