Update user_dto.php

This commit is contained in:
Fernando Méndez 2021-04-08 11:02:53 +02:00 committed by GitHub
parent 7d2c3593da
commit 66271ea4ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
<?php
include_once('users_dto_interface.php');
class UserDTO implements UsersDTO {
class UserDTO implements UsersInterface {
//Attributes:
private $_id; //User Id.
@ -34,4 +34,4 @@
public function getRol(){ return $this->_rol; }
}
?>
?>