mirror of
https://framagit.org/tom79/fediplan.git
synced 2025-04-06 06:01:50 +02:00
47 lines
669 B
PHP
47 lines
669 B
PHP
![]() |
<?php
|
||
|
|
||
|
namespace App\SocialEntity;
|
||
|
|
||
|
|
||
|
class Application
|
||
|
{
|
||
|
|
||
|
/** @var string */
|
||
|
private $name;
|
||
|
/** @var string */
|
||
|
private $website;
|
||
|
|
||
|
/**
|
||
|
* @return string
|
||
|
*/
|
||
|
public function getName(): string
|
||
|
{
|
||
|
return $this->name;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param string $name
|
||
|
*/
|
||
|
public function setName(string $name): void
|
||
|
{
|
||
|
$this->name = $name;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return string
|
||
|
*/
|
||
|
public function getWebsite(): string
|
||
|
{
|
||
|
return $this->website;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param string $website
|
||
|
*/
|
||
|
public function setWebsite(string $website): void
|
||
|
{
|
||
|
$this->website = $website;
|
||
|
}
|
||
|
|
||
|
}
|