mirror of
https://github.com/friendica/friendica
synced 2025-04-26 16:30:12 +00:00
Merge pull request #8210 from nupplaphil/task/mod_fsuggest
Move mod/fsuggest to src/Module/SuggestFriend
This commit is contained in:
commit
96b9619608
11 changed files with 244 additions and 218 deletions
22
src/Model/FSuggest.php
Normal file
22
src/Model/FSuggest.php
Normal file
|
@ -0,0 +1,22 @@
|
|||
<?php
|
||||
|
||||
namespace Friendica\Model;
|
||||
|
||||
use Friendica\BaseModel;
|
||||
|
||||
/**
|
||||
* Model for interacting with a friend suggestion
|
||||
*
|
||||
* @property int uid
|
||||
* @property int cid
|
||||
* @property string name
|
||||
* @property string url
|
||||
* @property string request
|
||||
* @property string photo
|
||||
* @property string note
|
||||
* @property string created
|
||||
*/
|
||||
class FSuggest extends BaseModel
|
||||
{
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue