mirror of
https://github.com/YGGverse/YGGtracker.git
synced 2026-03-31 17:15:38 +00:00
16 lines
220 B
PHP
16 lines
220 B
PHP
<?php
|
|
|
|
class AppModelSession {
|
|
|
|
private $_address;
|
|
|
|
public function __construct(string $address)
|
|
{
|
|
$this->_address = $address;
|
|
}
|
|
|
|
public function getAddress() : string
|
|
{
|
|
return $this->_address;
|
|
}
|
|
}
|