2018-11-12 22:29:27 -07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Transformer\ActivityPub\Verb;
|
|
|
|
|
|
|
|
use App\Follower;
|
|
|
|
use League\Fractal;
|
|
|
|
|
|
|
|
class Follow extends Fractal\TransformerAbstract
|
|
|
|
{
|
2018-12-31 23:26:42 -07:00
|
|
|
public function transform($follower)
|
2018-11-12 22:29:27 -07:00
|
|
|
{
|
|
|
|
return [
|
|
|
|
'@context' => 'https://www.w3.org/ns/activitystreams',
|
|
|
|
'type' => 'Follow',
|
|
|
|
'actor' => $follower->actor->permalink(),
|
|
|
|
'object' => $follower->target->permalink()
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|