mirror of https://github.com/pixelfed/pixelfed
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			19 lines
		
	
	
		
			407 B
		
	
	
	
		
			PHP
		
	
			
		
		
	
	
			19 lines
		
	
	
		
			407 B
		
	
	
	
		
			PHP
		
	
<?php
 | 
						|
 | 
						|
namespace App\Transformer\ActivityPub\Verb;
 | 
						|
 | 
						|
use App\Status;
 | 
						|
use League\Fractal;
 | 
						|
 | 
						|
class Announce extends Fractal\TransformerAbstract
 | 
						|
{
 | 
						|
    public function transform(Status $status)
 | 
						|
    {
 | 
						|
    	return [
 | 
						|
    		'@context'  => 'https://www.w3.org/ns/activitystreams',
 | 
						|
    		'type' 		=> 'Announce',
 | 
						|
    		'actor'		=> $status->profile->permalink(),
 | 
						|
    		'object'	=> $status->parent()->url()
 | 
						|
    	];
 | 
						|
    }
 | 
						|
} |