public function ScheduledTransition::getAuthor in Scheduled Transitions 8
Same name and namespace in other branches
- 2.x src/Entity/ScheduledTransition.php \Drupal\scheduled_transitions\Entity\ScheduledTransition::getAuthor()
Get the author for this scheduled transition.
Return value
\Drupal\user\UserInterface|null The author.
Overrides ScheduledTransitionInterface::getAuthor
File
- src/
Entity/ ScheduledTransition.php, line 155
Class
- ScheduledTransition
- Scheduled Transition entity.
Namespace
Drupal\scheduled_transitions\EntityCode
public function getAuthor() : ?UserInterface {
return $this
->get('author')->entity;
}