Skip to content
This repository has been archived by the owner on Mar 5, 2022. It is now read-only.

Commit

Permalink
Fixing doc blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
Florian Krämer committed Jan 12, 2016
1 parent 904c34c commit e0d52ea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Storage/StorageUtils.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,11 @@ public static function trimPath($path) {
}

/**
* Converts windows to linux pathes and vice versa
* Converts windows to linux paths and vice versa
*
* @param string
* @return string
*/
*/
public static function normalizePath($string) {
if (DS == '\\') {
return str_replace('/', '\\', $string);
Expand All @@ -85,7 +85,7 @@ public static function normalizePath($string) {
* Method to normalize the annoying inconsistency of the $_FILE array structure
*
* @link http://de2.php.net/manual/en/features.file-upload.multiple.php#53240
* @param array $array
* @param array $files
* @return array Empty array if $_FILE is empty, if not normalize array of Filedata.{n}
*/
public static function normalizeGlobalFilesArray($files = null) {
Expand Down

0 comments on commit e0d52ea

Please sign in to comment.