dbmsv4 init...3

This commit is contained in:
최준흠 2025-12-12 15:40:40 +09:00
parent e7c1da7ec1
commit ecf833d439
13 changed files with 13 additions and 13 deletions

View File

@ -22,7 +22,7 @@ class GoogleService extends AuthService
{
return new GoogleDTO($formDatas);
}
protected function getDTOClass(): string
public function getDTOClass(): string
{
return GoogleDTO::class;
}

View File

@ -21,7 +21,7 @@ class LocalService extends AuthService
{
return new LocalDTO($formDatas);
}
protected function getDTOClass(): string
public function getDTOClass(): string
{
return LocalDTO::class;
}

View File

@ -19,7 +19,7 @@ class CHASSISService extends EquipmentService
parent::__construct($model);
$this->addClassPaths('CHASSIS');
}
protected function getDTOClass(): string
public function getDTOClass(): string
{
return CHASSISDTO::class;
}

View File

@ -19,7 +19,7 @@ class LineService extends EquipmentService
parent::__construct($model);
$this->addClassPaths('Line');
}
protected function getDTOClass(): string
public function getDTOClass(): string
{
return LineDTO::class;
}

View File

@ -19,7 +19,7 @@ class MylogService extends CommonService implements PipelineStepInterface
parent::__construct($model);
$this->addClassPaths('Mylog');
}
protected function getDTOClass(): string
public function getDTOClass(): string
{
return MylogDTO::class;
}

View File

@ -19,7 +19,7 @@ class CPUService extends PartType1Service
parent::__construct($model);
$this->addClassPaths('CPU');
}
protected function getDTOClass(): string
public function getDTOClass(): string
{
return CPUDTO::class;
}

View File

@ -20,7 +20,7 @@ class CSService extends PartType2Service
parent::__construct($model);
$this->addClassPaths('CS');
}
protected function getDTOClass(): string
public function getDTOClass(): string
{
return CSDTO::class;
}

View File

@ -20,7 +20,7 @@ class DISKService extends PartType1Service
parent::__construct($model);
$this->addClassPaths('DISK');
}
protected function getDTOClass(): string
public function getDTOClass(): string
{
return DISKDTO::class;
}

View File

@ -20,7 +20,7 @@ class IPService extends PartType3Service
parent::__construct($model);
$this->addClassPaths('IP');
}
protected function getDTOClass(): string
public function getDTOClass(): string
{
return IPDTO::class;
}

View File

@ -20,7 +20,7 @@ class RAMService extends PartType1Service
parent::__construct($model);
$this->addClassPaths('RAM');
}
protected function getDTOClass(): string
public function getDTOClass(): string
{
return RAMDTO::class;
}

View File

@ -20,7 +20,7 @@ class SOFTWAREService extends PartType1Service
parent::__construct($model);
$this->addClassPaths('SOFTWARE');
}
protected function getDTOClass(): string
public function getDTOClass(): string
{
return SOFTWAREDTO::class;
}

View File

@ -21,7 +21,7 @@ class SWITCHService extends PartType3Service
parent::__construct($model);
$this->addClassPaths('SWITCH');
}
protected function getDTOClass(): string
public function getDTOClass(): string
{
return SWITCHDTO::class;
}

View File

@ -19,7 +19,7 @@ class UserService extends CommonService
parent::__construct($model);
$this->addClassPaths('User');
}
protected function getDTOClass(): string
public function getDTOClass(): string
{
return UserDTO::class;
}