Showing 10 of 12 total issues
Method save
has 56 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function save(Form $form, $doNotSave = false)
{
$model = new Submission();
$model->form_id = $form->id;
$model->useragent = Yii::$app->request->userAgent;
Function save
has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring. Open
public function save(Form $form, $doNotSave = false)
{
$model = new Submission();
$model->form_id = $form->id;
$model->useragent = Yii::$app->request->userAgent;
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method safeUp
has 34 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function safeUp()
{
$this->createTable('{{%forms_form}}', [
'id' => $this->primaryKey(),
'title' => $this->text()->notNull(),
Method config
has 32 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function config()
{
return [
'vars' => [
[
Function submitAndStore
has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring. Open
public function submitAndStore()
{
if ($this->isSubmit()) {
// the data is only available if the isSubmit call was running, therefore for
// first check for is submit
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function callbackExport
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
public function callbackExport()
{
$data = [];
$keys = false;
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method config
has 26 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function config()
{
return ArrayHelper::merge([
'vars' => [
[
Method frontend
has 26 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function frontend()
{
Yii::$app->forms->autoConfigureAttribute(
$this->getVarValue($this->varAttribute),
$this->getVarValue($this->varRule, $this->defaultRule),
Method callbackExport
has 26 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function callbackExport()
{
$data = [];
$keys = false;
Method autoConfigureAttribute
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
public function autoConfigureAttribute($attributeName, $rule, $isRequired, $label = null, $hint = null, $formatAs = null)