mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00
23 lines
411 B
PHP
23 lines
411 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* @copyright 2021 Podlibre
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
* @link https://castopod.org/
|
|
*/
|
|
|
|
namespace App\Models;
|
|
|
|
use ActivityPub\Models\ActorModel as ActivityPubActorModel;
|
|
use App\Entities\Actor;
|
|
|
|
class ActorModel extends ActivityPubActorModel
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $returnType = Actor::class;
|
|
}
|