mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-17 12:28:41 +00:00
25 lines
328 B
PHP
25 lines
328 B
PHP
<?php
|
|
|
|
namespace phpOMS\Utils\Git;
|
|
|
|
class Author
|
|
{
|
|
private $name = '';
|
|
private $email = '';
|
|
|
|
public function __construct(string $name, string $email)
|
|
{
|
|
$this->name = $name;
|
|
$this->email = $email;
|
|
}
|
|
|
|
public function getName() : string
|
|
{
|
|
return $name;
|
|
}
|
|
|
|
public function getEmail() : string
|
|
{
|
|
return $email;
|
|
}
|
|
} |