Skip to content

Commit 2e60a30

Browse files
committed
Fix incorrect Admin config source
1 parent 7303304 commit 2e60a30

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Model/Config/Source/XhprofFlags.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ public function toOptionArray()
2424
{
2525
return [
2626
['value' => self::FLAG_NO_BUILTINS, 'label' => __('No xhprof builtins')],
27-
['value' => self::FLAG_CPU, 'label' => __('Profile Memory')],
28-
['value' => self::FLAG_MEMORY, 'label' => __('Profile Cpu')],
27+
['value' => self::FLAG_MEMORY, 'label' => __('Profile Memory')],
28+
['value' => self::FLAG_CPU, 'label' => __('Profile Cpu')],
2929
];
3030
}
3131
}

0 commit comments

Comments
 (0)