Skip to content

Commit

Permalink
Merge pull request #2 from detailnet/feature/translation-text-interface
Browse files Browse the repository at this point in the history
Added translation text interface
  • Loading branch information
Steeve Christen committed Sep 29, 2015
2 parents 5b9d089 + 9e466f7 commit aecd98e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

namespace Detail\Persistence\Model\Behavior\Translatable;

class TranslationText
class TranslationText implements
TranslationTextInterface
{
/**
* @var string
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?php

namespace Detail\Persistence\Model\Behavior\Translatable;

interface TranslationTextInterface extends TranslationInterface
{
/**
* @return string
*/
public function getValue();
}

0 comments on commit aecd98e

Please sign in to comment.