22 lines
311 B
PHP
22 lines
311 B
PHP
<?php
|
|
|
|
namespace MailPoet\Doctrine\Driver;
|
|
|
|
class DummyUser {
|
|
private $name;
|
|
private $age;
|
|
|
|
public function __construct($name, $age) {
|
|
$this->name = $name;
|
|
$this->age = $age;
|
|
}
|
|
|
|
public function getName() {
|
|
return $this->name;
|
|
}
|
|
|
|
public function getAge() {
|
|
return $this->age;
|
|
}
|
|
}
|