File tree 3 files changed +4
-3
lines changed
3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ $config = PhpCsFixer\Config::create()
19
19
'concat_space ' => ['spacing ' => 'one ' ],
20
20
'ordered_imports ' => true ,
21
21
'array_syntax ' => ['syntax ' => 'short ' ],
22
+ 'yoda_style ' => false ,
22
23
])
23
24
->setFinder ($ finder );
24
25
Original file line number Diff line number Diff line change 35
35
</div>
36
36
<div class="col-lg-5">
37
37
<input class="form-control search" data-target="assigned"
38
- placeholder="<?php echo Yii::t ('yii2mod.rbac ' , 'Search for assigned ' ) ?> ">
38
+ placeholder="<?php echo Yii::t ('yii2mod.rbac ' , 'Search for assigned ' ); ?> ">
39
39
<br/>
40
40
<select multiple size="20" class="form-control list" data-target="assigned"></select>
41
41
</div>
Original file line number Diff line number Diff line change 7
7
8
8
use yii2mod\rbac\migrations\Migration;
9
9
10
- class <?= $ className ?> extends Migration
10
+ class <?= $ className; ?> extends Migration
11
11
{
12
12
public function safeUp()
13
13
{
@@ -16,7 +16,7 @@ public function safeUp()
16
16
17
17
public function safeDown()
18
18
{
19
- echo "<?= $ className ?> cannot be reverted.\n";
19
+ echo "<?= $ className; ?> cannot be reverted.\n";
20
20
21
21
return false;
22
22
}
You can’t perform that action at this time.
0 commit comments