PartyUser.php in Party 8.2
Definition of Drupal\party\Plugin\Core\Entity\Party.
Namespace
Drupal\partyFile
lib/Drupal/party/PartyUser.phpView source
<?php
/**
* @file
* Definition of Drupal\party\Plugin\Core\Entity\Party.
*/
namespace Drupal\party;
use Drupal\user\Plugin\Core\Entity;
/**
* Defines the Party class to extend users to work as an anonymous user API.
*/
class PartyUser extends User {
/**
* The party representing this user.
*
* @Party $party
*/
public $party;
}