Skip to content

Commit

Permalink
Merge pull request #2 from Bartheyrman22/Bartheyrman22-patch-1
Browse files Browse the repository at this point in the history
Create HunspellStemResponse.php
  • Loading branch information
Janusz Żukowicz authored Dec 19, 2016
2 parents 334f91a + 66919d5 commit d967ec2
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions src/HunspellPHP/HunspellStemResponse.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?php
namespace HunspellPHP;

class HunspellStemResponse
{
/**
* @var string
*/
public $original;

/**
* @var string[]
*/
public $stems;

/**
* HunspellStemResponse constructor.
* @param string $original
* @param string[] $stems
*/
public function __construct($original, $stems = [])
{
$this->original = $original;
$this->stems = $stems;
}
}

0 comments on commit d967ec2

Please sign in to comment.