mirror of
https://github.com/friendica/friendica
synced 2024-11-13 16:22:53 +00:00
15 lines
197 B
PHP
15 lines
197 B
PHP
|
<?php
|
||
|
|
||
|
namespace Friendica\Collection;
|
||
|
|
||
|
use Friendica\BaseCollection;
|
||
|
use Friendica\Model\Introduction;
|
||
|
|
||
|
/**
|
||
|
* @property Introduction[] $models
|
||
|
*/
|
||
|
class Introductions extends BaseCollection
|
||
|
{
|
||
|
|
||
|
}
|