Browse Source

Clarify array types in doc blocks.

Mark Sch 8 years ago
parent
commit
1d12f3b4ad
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/Database/Type.php

+ 2 - 2
src/Database/Type.php

@@ -29,7 +29,7 @@ class Type implements TypeInterface
      * identifier is used as key and a complete namespaced class name as value
      * representing the class that will do actual type conversions.
      *
-     * @var array
+     * @var string[]|\Cake\Database\Type[]
      */
     protected static $_types = [
         'tinyinteger' => 'Cake\Database\Type\IntegerType',
@@ -69,7 +69,7 @@ class Type implements TypeInterface
     /**
      * Contains a map of type object instances to be reused if needed.
      *
-     * @var array
+     * @var \Cake\Database\Type[]
      */
     protected static $_builtTypes = [];