for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types = 1);
namespace ekinhbayar\GitAmp\Presentation\Sound;
abstract class BaseSound
{
protected $size;
public function __construct(float $size = 1) {
$this->size = $size;
}
abstract public function getAsArray(): array;