@@ -114,7 +114,7 @@ |
||
114 | 114 | /** |
115 | 115 | * Returns the PHP "memory_limit" in Kilobytes |
116 | 116 | * |
117 | - * @return float |
|
117 | + * @return integer |
|
118 | 118 | */ |
119 | 119 | protected function getMemoryLimitInKB() |
120 | 120 | { |
@@ -29,7 +29,7 @@ |
||
29 | 29 | } |
30 | 30 | |
31 | 31 | /** |
32 | - * @return string[] List of used fonts name |
|
32 | + * @return integer[] List of used fonts name |
|
33 | 33 | */ |
34 | 34 | protected function getUsedFonts() |
35 | 35 | { |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | * Loads the class file for a given class name. |
65 | 65 | * |
66 | 66 | * @param string $class The fully-qualified class name. |
67 | - * @return mixed The mapped file name on success, or boolean false on |
|
67 | + * @return string|false The mapped file name on success, or boolean false on |
|
68 | 68 | * failure. |
69 | 69 | */ |
70 | 70 | public function loadClass($class) |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | * |
103 | 103 | * @param string $prefix The namespace prefix. |
104 | 104 | * @param string $relativeClass The relative class name. |
105 | - * @return mixed Boolean false if no mapped file can be loaded, or the |
|
105 | + * @return false|string Boolean false if no mapped file can be loaded, or the |
|
106 | 106 | * name of the mapped file that was loaded. |
107 | 107 | */ |
108 | 108 | protected function loadMappedFile($prefix, $relativeClass) |