ekinhbayar /
gitamp
These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more
| 1 | <?php declare(strict_types=1); |
||
| 2 | |||
| 3 | namespace ekinhbayar\GitAmp\Presentation\Sound; |
||
| 4 | |||
| 5 | abstract class BaseSound |
||
| 6 | { |
||
| 7 | protected float $size; |
||
|
0 ignored issues
–
show
Bug
introduced
by
Loading history...
|
|||
| 8 | |||
| 9 | 23 | public function __construct(float $size = 1) |
|
| 10 | { |
||
| 11 | 23 | $this->size = $size; |
|
| 12 | } |
||
| 13 | |||
| 14 | abstract public function getAsArray(): array; |
||
| 15 | } |
||
| 16 |