Skip to content

Commit

Permalink
Issue #1 建立 Double 序列初始版本
Browse files Browse the repository at this point in the history
  • Loading branch information
mouson committed Mar 20, 2019
1 parent c671114 commit 78b78a0
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions src/Helpers/SequenceCalculator/DoubleSequenceCalculator.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?php
/**
* Created by PhpStorm.
* User: mouson
* Date: 2017/1/10
* Time: 03:44
*/

namespace Mouson\Helpers\SequenceCalculator;

class DoubleSequenceCalculator implements CalculatorInterface
{

/**
* @param $value
*
* @return int|mixed
*/
public function calculate($value)
{
return ($value * 2);
}

public function getSequenceName()
{
return 'Double';
}
}

0 comments on commit 78b78a0

Please sign in to comment.