| Total Complexity | 3 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 14 | final class StandardAlgebraicNotation implements TokenInterface |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var Notation |
||
| 18 | */ |
||
| 19 | private $standardAlgebraicNotation; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * Initializes a new instance of this class. |
||
| 23 | * |
||
| 24 | * @param Notation $standardAlgebraicNotation |
||
| 25 | */ |
||
| 26 | public function __construct(Notation $standardAlgebraicNotation) |
||
| 29 | } |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Gets the value of field "standardAlgebraicNotation". |
||
| 33 | * |
||
| 34 | * @return Notation |
||
| 35 | */ |
||
| 36 | public function getStandardAlgebraicNotation(): Notation |
||
| 39 | } |
||
| 40 | |||
| 41 | public function getType(): int |
||
| 46 |