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 Guitar extends InstrumentBase implements InstrumentInterface
{
/**
* {@inheritdoc}
*/
protected function getDefaultNames(): array
return ['E4', 'B3', 'G3', 'D3', 'A2', 'E2'];
}
protected function getDefaultStringLength(): float
return 650;