I have a virtual machine mounted from the vagrant with Official Ubuntu Server 14.04 LTS (Trusty Tahr) builds, I set up an environment with PHP 5.6, Mysql and apache 2 in this virtual machine, however I did some tests with PHP, and I noticed that the case sensitive does not work, I already had some Problems in file calls in the production environment because of case sensitive, it would help me a lot to be able to identify this in the development, does anyone know what could be happening?
index.php
include_once "Filecamelcase.php";
$teste = new teste();
echo $teste->teste();
FileCamelCase.php
class Teste {
function Teste(){
return "teste";
}
}