Skip to content

Commit

Permalink
Update docblocks and checks for nullable properties.
Browse files Browse the repository at this point in the history
  • Loading branch information
ADmad committed Dec 4, 2020
1 parent c22f147 commit aa78fd0
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Driver/Mysql.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class Mysql extends Driver
/**
* The schema dialect for this driver
*
* @var \Cake\Database\Schema\MysqlSchemaDialect
* @var \Cake\Database\Schema\MysqlSchemaDialect|null
*/
protected $_schemaDialect;

Expand Down
2 changes: 1 addition & 1 deletion Driver/Postgres.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class Postgres extends Driver
/**
* The schema dialect class for this driver
*
* @var \Cake\Database\Schema\PostgresSchemaDialect
* @var \Cake\Database\Schema\PostgresSchemaDialect|null
*/
protected $_schemaDialect;

Expand Down
2 changes: 1 addition & 1 deletion Driver/Sqlite.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class Sqlite extends Driver
/**
* The schema dialect class for this driver
*
* @var \Cake\Database\Schema\SqliteSchemaDialect
* @var \Cake\Database\Schema\SqliteSchemaDialect|null
*/
protected $_schemaDialect;

Expand Down
2 changes: 1 addition & 1 deletion Driver/Sqlserver.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ class Sqlserver extends Driver
/**
* The schema dialect class for this driver
*
* @var \Cake\Database\Schema\SqlserverSchemaDialect
* @var \Cake\Database\Schema\SqlserverSchemaDialect|null
*/
protected $_schemaDialect;

Expand Down
2 changes: 1 addition & 1 deletion Query.php
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ class Query implements ExpressionInterface, IteratorAggregate
/**
* The Type map for fields in the select clause
*
* @var \Cake\Database\TypeMap
* @var \Cake\Database\TypeMap|null
*/
protected $_selectTypeMap;

Expand Down
2 changes: 1 addition & 1 deletion TypeMapTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
trait TypeMapTrait
{
/**
* @var \Cake\Database\TypeMap
* @var \Cake\Database\TypeMap|null
*/
protected $_typeMap;

Expand Down

0 comments on commit aa78fd0

Please sign in to comment.