Answer the question
In order to leave comments, you need to log in
What is the correct way to name classes?
1.
/src/
<?php
namespace App\Entity;
class Unit
{
}
<?php
namespace App\Entity;
class UnitType
{
}
<?php
namespace App\Entity;
class Unit
{
}
<?php
namespace App\Entity\Unit;
class Type
{
}
use App\Entity\Foo\Type;
use App\Entity\Bar\Type;
use App\Entity\Foo\Type as FooType;
use App\Entity\Bar\Type as BarType;
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question