I'm using namespace to use classes in PHP, there's a part where I do
use StatusCorrida\StatusCorrida;
include('arquivo.php');
The arquivo.php
does
$var = new StatusCorrida();
This file makes use of these StatusCorrida
classes, however the file does not recognize the namespace
declared outside the file.
The error that says is that the class StatusCorrida was not found.