Answer the question
In order to leave comments, you need to log in
How to call a class from another file in Symfony2?
Good afternoon Toaster! After working with a "self-made" engine, I decided to start learning Symfony2. But there was a following problem.
There is a Constants.php file in the Helpers folder, and it contains the AppBundle\Helpers namespace and the Obj class. I'm trying to call the whole thing in a certain ToolsController controller:
namespace AppBundle\Controller;
use AppBundle\Helpers;
class ToolsController extends Controller
{
public function indexAction()
{
$a = Helpers\Obj::User;
...
}
}
namespace AppBundle\Helpers;
class Obj {
const User = 1;
...
}
Answer the question
In order to leave comments, you need to log in
https://getcomposer.org/doc/04-schema.md#autoload - we look at the classmap section, but in general, yes, the file and class names must match, it's easier to find where everything is.
ps Kdass-kelpers are bad. Learn to come up with adequate names filled with meaning.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question