Skip to content

Commit

Permalink
Fixed the docblocks for class properties
Browse files Browse the repository at this point in the history
  • Loading branch information
David Yell committed Aug 1, 2016
1 parent c99ac1c commit 4c9ed71
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Database/Type/BinaryType.php
Expand Up @@ -31,7 +31,7 @@ class BinaryType implements TypeInterface
/**
* Identifier name for this type
*
* @var string
* @var string|null
*/
protected $_name = null;

Expand Down
2 changes: 1 addition & 1 deletion src/Database/Type/BoolType.php
Expand Up @@ -30,7 +30,7 @@ class BoolType implements TypeInterface
/**
* Identifier name for this type
*
* @var string
* @var string|null
*/
protected $_name = null;

Expand Down
2 changes: 1 addition & 1 deletion src/Database/Type/DateTimeType.php
Expand Up @@ -80,7 +80,7 @@ class DateTimeType implements TypeInterface
/**
* Identifier name for this type
*
* @var string
* @var string|null
*/
protected $_name = null;

Expand Down
2 changes: 1 addition & 1 deletion src/Database/Type/FloatType.php
Expand Up @@ -30,7 +30,7 @@ class FloatType implements TypeInterface
/**
* Identifier name for this type
*
* @var string
* @var string|null
*/
protected $_name = null;

Expand Down
2 changes: 1 addition & 1 deletion src/Database/Type/IntegerType.php
Expand Up @@ -30,7 +30,7 @@ class IntegerType implements TypeInterface
/**
* Identifier name for this type
*
* @var string
* @var string|null
*/
protected $_name = null;

Expand Down

0 comments on commit 4c9ed71

Please sign in to comment.