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 Cello extends InstrumentBase implements InstrumentInterface
{
/**
* {@inheritdoc}
*/
protected function getDefaultNames(): array
return ['A3', 'D2', 'G2', 'C2'];
}
protected function getDefaultStringLength(): float
return 690;