27 lines
581 B
PHP
27 lines
581 B
PHP
|
<?php
|
||
|
|
||
|
namespace Friendica\Test\Util;
|
||
|
|
||
|
use Friendica\BaseEntity;
|
||
|
|
||
|
/**
|
||
|
* @property-read string $protString
|
||
|
* @property-read int $protInt
|
||
|
* @property-read \DateTime $protDateTime
|
||
|
*/
|
||
|
class EntityDouble extends BaseEntity
|
||
|
{
|
||
|
protected $protString;
|
||
|
protected $protInt;
|
||
|
protected $protDateTime;
|
||
|
private $privString;
|
||
|
|
||
|
public function __construct(string $protString, int $protInt, \DateTime $protDateTime, string $privString)
|
||
|
{
|
||
|
$this->protString = $protString;
|
||
|
$this->protInt = $protInt;
|
||
|
$this->protDateTime = $protDateTime;
|
||
|
$this->privString = $privString;
|
||
|
}
|
||
|
}
|