for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SilverStripe\MultiForm\Tests\Stubs;
use SilverStripe\Dev\TestOnly;
use SilverStripe\MultiForm\Models\MultiForm;
class MultiFormTestForm extends MultiForm implements TestOnly
{
private static $start_step = MultiFormTestStepOne::class;
$start_step
This check marks private properties in classes that are never used. Those properties can be removed.
public function getStartStep()
return $this->config()->get('start_step');
}
This check marks private properties in classes that are never used. Those properties can be removed.