ILIAS  trunk Revision v11.0_alpha-2662-g519ff7d528f
ActivityImpl.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
27 abstract class ActivityImpl implements Activity
28 {
29  public function getName(): \ILIAS\Component\Dependencies\Name
30  {
31  return new \ILIAS\Component\Dependencies\Name(static::class);
32  }
33 }
Interface Observer Contains several chained tasks and infos about them.
An Activity is an action on the domain layer action of a component.
Definition: Activity.php:38
Basic Implementation for Activities.
getName()
Shall return classname of the Activity, wrapped in Name.