15 lines
302 B
PHP
15 lines
302 B
PHP
|
<?php
|
||
|
|
||
|
namespace Drupal\opencase_entities;
|
||
|
|
||
|
use Drupal\content_translation\ContentTranslationHandler;
|
||
|
|
||
|
/**
|
||
|
* Defines the translation handler for oc_actor.
|
||
|
*/
|
||
|
class OCActorTranslationHandler extends ContentTranslationHandler {
|
||
|
|
||
|
// Override here the needed methods from ContentTranslationHandler.
|
||
|
|
||
|
}
|