Fix null typehint order

This commit is contained in:
Dennis Eichhorn 2018-12-10 18:13:38 +01:00
parent ff81707d1e
commit de783d2204
4 changed files with 5 additions and 5 deletions

View File

@ -29,7 +29,7 @@ final class AddressMapper extends DataMapperAbstract
/**
* Columns.
*
* @var array<string, array<string, string|bool>>
* @var array<string, array<string, bool|string>>
* @since 1.0.0
*/
protected static $columns = [

View File

@ -21,7 +21,7 @@ final class ContactElementMapper extends DataMapperAbstract
/**
* Columns.
*
* @var array<string, array<string, string|bool>>
* @var array<string, array<string, bool|string>>
* @since 1.0.0
*/
protected static $columns = [

View File

@ -74,7 +74,7 @@ class Profile implements \JsonSerializable
/**
* Constructor.
*
* @param Account|null $account Account to initialize this profile with
* @param null|Account $account Account to initialize this profile with
*
* @since 1.0.0
*/

View File

@ -31,7 +31,7 @@ final class ProfileMapper extends DataMapperAbstract
/**
* Columns.
*
* @var array<string, array<string, string|bool>>
* @var array<string, array<string, bool|string>>
* @since 1.0.0
*/
protected static $columns = [
@ -61,7 +61,7 @@ final class ProfileMapper extends DataMapperAbstract
/**
* Has many relation.
*
* @var array<string, array<string, string|null>>
* @var array<string, array<string, null|string>>
* @since 1.0.0
*/
protected static $hasMany = [