landrok/activitypub

View on GitHub
src/ActivityPhp/Type/Extended/Object/Profile.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

declare(strict_types=1);

/*
 * This file is part of the ActivityPhp package.
 *
 * Copyright (c) landrok at github.com/landrok
 *
 * For the full copyright and license information, please see
 * <https://github.com/landrok/activitypub/blob/master/LICENSE>.
 */

namespace ActivityPhp\Type\Extended\Object;

use ActivityPhp\Type\Core\ObjectType;

/**
 * \ActivityPhp\Type\Extended\Object\Profile is an implementation of
 * one of the Activity Streams Extended Types.
 *
 * A Profile is a content object that describes another Object,
 * typically used to describe Actor Type objects.
 * The describes property is used to reference the object being
 * described by the profile.
 *
 * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-profile
 */
class Profile extends ObjectType
{
    /**
     * @var string
     */
    protected $type = 'Profile';

    /**
     * Identify the object described by the Profile.
     *
     * @var \ActivityPhp\Type\Core\ObjectType
     */
    protected $describes;
}