for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types = 1);
namespace ExtendedStrings\Strings\Instrument;
class Viola extends InstrumentBase implements InstrumentInterface
{
/**
* {@inheritdoc}
*/
protected function getDefaultNames(): array
return ['A4', 'D3', 'G3', 'C3'];
}
protected function getDefaultStringLength(): float
return 410;