Skip to content

Commit

Permalink
set crudFixOutput default to false in batch controller
Browse files Browse the repository at this point in the history
  • Loading branch information
schmunk42 committed Nov 28, 2016
1 parent 1e65499 commit a492b02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/commands/BatchController.php
Original file line number Diff line number Diff line change
Expand Up @@ -180,9 +180,9 @@ class BatchController extends Controller
public $crudTidyOutput = true;

/**
* @var bool whether to fix generated code (PSR-2)
* @var bool whether to fix generated code (PSR-2). Note: May take some time, depending on file size and numbers.
*/
public $crudFixOutput = true;
public $crudFixOutput = false;

/**
* @var string the namespace of the ActiveQuery class to be generated
Expand Down

0 comments on commit a492b02

Please sign in to comment.