You are here

class TranslationRequestManagerTested in TMGMT Translator Smartling 8.4

Test subclass class of TranslationRequestManager.

Increased access level for createNewTranslationRequest and updateExistingTranslationRequest methods.

Hierarchy

Expanded class hierarchy of TranslationRequestManagerTested

File

tests/src/Kernel/TranslationRequestManagerTest.php, line 828

Namespace

Drupal\Tests\tmgmt_smartling\Kernel
View source
class TranslationRequestManagerTested extends TranslationRequestManager {
  public function createNewTranslationRequest(JobInterface $job) {
    return parent::createNewTranslationRequest($job);
  }
  public function updateExistingTranslationRequest(JobInterface $job, array $translation_request) {
    return parent::updateExistingTranslationRequest($job, $translation_request);
  }

}

Members