forked from mirror/Part-DB.Part-DB-server
Renamed the base DBElement classes to AbstractDBElement to comply with symfony recommendations.
This commit is contained in:
parent
da72f5b3ec
commit
594c694ee0
62 changed files with 203 additions and 203 deletions
|
@ -51,7 +51,7 @@ declare(strict_types=1);
|
|||
|
||||
namespace App\Entity\Devices;
|
||||
|
||||
use App\Entity\Base\DBElement;
|
||||
use App\Entity\Base\AbstractDBElement;
|
||||
use App\Entity\Parts\Part;
|
||||
use Doctrine\ORM\Mapping as ORM;
|
||||
|
||||
|
@ -61,7 +61,7 @@ use Doctrine\ORM\Mapping as ORM;
|
|||
* @ORM\Table("`device_parts`")
|
||||
* @ORM\Entity()
|
||||
*/
|
||||
class DevicePart extends DBElement
|
||||
class DevicePart extends AbstractDBElement
|
||||
{
|
||||
/**
|
||||
* @var int
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue