コード例 #1
0
 /**
  * @inheritdoc
  */
 protected function setUp()
 {
     parent::setUp();
     $this->processor = new CamelCaseFormatter();
 }
コード例 #2
0
 /**
  * @inheritdoc
  */
 protected function setUp()
 {
     $this->processor = new KebabCaseFormatter();
     parent::setUp();
 }
コード例 #3
0
 /**
  * @inheritdoc
  */
 protected function setUp()
 {
     parent::setUp();
     $this->processor = new AlphabeticalPurifier();
 }
コード例 #4
0
 /**
  * @inheritdoc
  */
 protected function setUp()
 {
     parent::setUp();
     $this->processor = new RuEnTranslator();
 }
コード例 #5
0
 /**
  * @inheritdoc
  */
 protected function setUp()
 {
     parent::setUp();
     $dictionary = new RuEnDictionary();
     $this->processor = new Translator($dictionary);
 }