aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/ActivityStreams/Profile.php
blob: 817f4a817212eabaa195c8b80a22f66d8f801def (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?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;
    }


}