mirror of
https://framagit.org/hubzilla/core.git
synced 2026-06-21 00:52:33 -04:00
30 lines
411 B
PHP
30 lines
411 B
PHP
<?php
|
|
|
|
namespace Zotlabs\ActivityStreams;
|
|
|
|
class Profile extends ASObject
|
|
{
|
|
|
|
public $describes;
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function getDescribes()
|
|
{
|
|
return $this->describes;
|
|
}
|
|
|
|
/**
|
|
* @param mixed $describes
|
|
* @return Profile
|
|
*/
|
|
public function setDescribes($describes)
|
|
{
|
|
$this->describes = $describes;
|
|
return $this;
|
|
}
|
|
|
|
|
|
}
|