@@ -984,6 +984,8 @@ protected function _processColumn(array $processedField): string
984984
985985 /**
986986 * Performs a data type mapping between different databases.
987+ *
988+ * @return void
987989 */
988990 protected function _attributeType (array &$ attributes )
989991 {
@@ -999,6 +1001,8 @@ protected function _attributeType(array &$attributes)
9991001 * if $attributes['TYPE'] is found in the array
10001002 * - array(TYPE => UTYPE) will change $field['type'],
10011003 * from TYPE to UTYPE in case of a match
1004+ *
1005+ * @return void
10021006 */
10031007 protected function _attributeUnsigned (array &$ attributes , array &$ field )
10041008 {
@@ -1030,6 +1034,9 @@ protected function _attributeUnsigned(array &$attributes, array &$field)
10301034 $ field ['unsigned ' ] = ($ this ->unsigned === true ) ? ' UNSIGNED ' : '' ;
10311035 }
10321036
1037+ /**
1038+ * @return void
1039+ */
10331040 protected function _attributeDefault (array &$ attributes , array &$ field )
10341041 {
10351042 if ($ this ->default === false ) {
@@ -1051,13 +1058,19 @@ protected function _attributeDefault(array &$attributes, array &$field)
10511058 }
10521059 }
10531060
1061+ /**
1062+ * @return void
1063+ */
10541064 protected function _attributeUnique (array &$ attributes , array &$ field )
10551065 {
10561066 if (! empty ($ attributes ['UNIQUE ' ]) && $ attributes ['UNIQUE ' ] === true ) {
10571067 $ field ['unique ' ] = ' UNIQUE ' ;
10581068 }
10591069 }
10601070
1071+ /**
1072+ * @return void
1073+ */
10611074 protected function _attributeAutoIncrement (array &$ attributes , array &$ field )
10621075 {
10631076 if (! empty ($ attributes ['AUTO_INCREMENT ' ]) && $ attributes ['AUTO_INCREMENT ' ] === true
@@ -1254,6 +1267,8 @@ protected function _processForeignKeys(string $table, bool $asQuery = false): ar
12541267
12551268 /**
12561269 * Resets table creation vars
1270+ *
1271+ * @return void
12571272 */
12581273 public function reset ()
12591274 {
0 commit comments