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 Violin extends InstrumentBase implements InstrumentInterface
{
/**
* {@inheritdoc}
*/
protected function getDefaultNames(): array
return ['E5', 'A4', 'D4', 'G3'];
}
protected function getDefaultStringLength(): float
return 325;