/**
  * {@inheritdoc}
  */
 public function getCurrentDate()
 {
     $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCurrentDate');
     if (!$pluginInfo) {
         return parent::getCurrentDate();
     } else {
         return $this->___callPlugins('getCurrentDate', func_get_args(), $pluginInfo);
     }
 }