@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | * @param array $replace |
112 | 112 | * @param string $delimiter |
113 | 113 | * |
114 | - * @return mixed|string |
|
114 | + * @return string |
|
115 | 115 | */ |
116 | 116 | function slugify($str, $replace=array(), $delimiter='-') { |
117 | 117 | if( !empty($replace) ) { |
@@ -130,7 +130,6 @@ discard block |
||
130 | 130 | * Dumps a var_dump of the passed arguments with <pre> tags surrounding it. |
131 | 131 | * Dies afterwards |
132 | 132 | * |
133 | - * @param mixed $data The data to be displayed |
|
134 | 133 | */ |
135 | 134 | function dump() |
136 | 135 | { |
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | /** |
18 | 18 | * JsonStorage constructor. |
19 | 19 | * |
20 | - * @param $storagePath |
|
20 | + * @param string $storagePath |
|
21 | 21 | */ |
22 | 22 | public function __construct($storagePath) |
23 | 23 | { |
@@ -837,6 +837,9 @@ discard block |
||
837 | 837 | } |
838 | 838 | } |
839 | 839 | |
840 | + /** |
|
841 | + * @param string $path |
|
842 | + */ |
|
840 | 843 | private function validateFilename($filename, $path) |
841 | 844 | { |
842 | 845 | $fileParts = explode('.', $filename); |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | * Use build-in logic to position the x of watermark |
58 | 58 | * |
59 | 59 | * @param string $imageResource |
60 | - * @return self |
|
60 | + * @return integer |
|
61 | 61 | */ |
62 | 62 | protected function calculateX($imageResource) |
63 | 63 | { |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | * Use build-in logic to position the y of watermark |
83 | 83 | * |
84 | 84 | * @param string $imageResource |
85 | - * @return self |
|
85 | + * @return integer |
|
86 | 86 | */ |
87 | 87 | public function calculateY($imageResource) |
88 | 88 | { |
@@ -131,6 +131,7 @@ discard block |
||
131 | 131 | * Set the x |
132 | 132 | * |
133 | 133 | * @param int | string $x |
134 | + * @param string $x |
|
134 | 135 | * @return self |
135 | 136 | */ |
136 | 137 | public function SetX($x) |
@@ -143,6 +144,7 @@ discard block |
||
143 | 144 | * Set the y |
144 | 145 | * |
145 | 146 | * @param int | string $y |
147 | + * @param string $y |
|
146 | 148 | * @return self |
147 | 149 | */ |
148 | 150 | public function SetY($y) |
@@ -74,7 +74,7 @@ |
||
74 | 74 | * @see http://www.php.net/manual/en/function.image-type-to-mime-type.php |
75 | 75 | * @param string $imagePath |
76 | 76 | * @param bool $getExtension |
77 | - * @return bool|int|string |
|
77 | + * @return integer |
|
78 | 78 | */ |
79 | 79 | public function GetImageMimeType($imagePath, $getExtension = false) |
80 | 80 | { |