Browse Source

Fix coding standards.

mark_story 13 years ago
parent
commit
99cbd22969
2 changed files with 1 additions and 1 deletions
  1. 0 1
      lib/Cake/Model/Datasource/DboSource.php
  2. 1 0
      lib/Cake/Utility/CakeNumber.php

+ 0 - 1
lib/Cake/Model/Datasource/DboSource.php

@@ -2931,7 +2931,6 @@ class DboSource extends DataSource {
  * @return boolean success.
  */
 	public function resetSequence($table, $column) {
-
 	}
 
 /**

+ 1 - 0
lib/Cake/Utility/CakeNumber.php

@@ -107,6 +107,7 @@ class CakeNumber {
  * @param string $size Size in human readable string like '5MB'
  * @param mixed $default Value to be returned when invalid size was used, for example 'Unknown type'
  * @return integer Bytes
+ * @throws CakeException On invalid Unit type.
  */
 	public static function fromReadableSize($size, $default = false) {
 		if (ctype_digit($size)) {