Skip to content

Commit

Permalink
[BUGFIX] Always enforce case sensitive file system
Browse files Browse the repository at this point in the history
This prevents file path and identifier to become lowercased on
development system.
  • Loading branch information
IchHabRecht committed Oct 29, 2018
1 parent 4027ac5 commit 6757ce6
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Classes/Resource/Driver/FileFillDriver.php
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,14 @@ public function dumpFileContents($identifier)
$this->originalDriverObject->dumpFileContents($identifier);
}

/**
* @return bool
*/
public function isCaseSensitiveFileSystem()
{
return true;
}

/**
* @param string $fileIdentifier
* @return bool
Expand Down

0 comments on commit 6757ce6

Please sign in to comment.