getDescription() public méthode

public getDescription ( $action, $vpid, $tags )
 /**
  * Text displayed in the main VersionPress table (see admin/index.php). Also used
  * to construct commit message subject (first line) when the commit is first
  * physically created.
  *
  * @return string
  */
 public function getChangeDescription()
 {
     if (empty($this->commitMessageSubject)) {
         $this->commitMessageSubject = $this->actionsInfo->getDescription($this->getAction(), $this->getId(), $this->getCustomTags());
     }
     return $this->commitMessageSubject;
 }
 /**
  * @test
  */
 public function actionsInfoAppliesFilterOnDescription()
 {
     $actions = ['some-action' => ['message' => 'Some description']];
     add_filter('vp_action_description_some-scope', function ($description) {
         $this->assertSame('Some description', $description);
         return 'Filtered description';
     });
     $actionsInfo = new ActionsInfo('some-scope', $actions);
     $description = $actionsInfo->getDescription('some-action', 'some-id', []);
     $this->assertSame('Filtered description', $description);
 }