File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
Catalog/Block/Adminhtml/Category/Widget
Widget/Test/Unit/Controller/Adminhtml/Widget/Instance Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -172,6 +172,7 @@ public function getCategoryCollection()
172
172
*
173
173
* @param bool|null $expanded
174
174
* @return string
175
+ * @SuppressWarnings(PHPMD.UnusedFormalParameter)
175
176
*/
176
177
public function getLoadTreeUrl ($ expanded = null )
177
178
{
Original file line number Diff line number Diff line change @@ -97,7 +97,10 @@ public function testExecute()
97
97
->willReturnSelf ();
98
98
$ this ->chooser ->expects ($ this ->once ())->method ('toHtml ' )->willReturn ($ content );
99
99
100
- $ this ->layout ->expects ($ this ->once ())->method ('createBlock ' )->with ($ this ->blockClass )->willReturn ($ this ->chooser );
100
+ $ this ->layout ->expects ($ this ->once ())
101
+ ->method ('createBlock ' )
102
+ ->with ($ this ->blockClass )
103
+ ->willReturn ($ this ->chooser );
101
104
102
105
$ this ->resultRaw ->expects ($ this ->once ())->method ('setContents ' )->with ($ content )->willReturnSelf ();
103
106
You can’t perform that action at this time.
0 commit comments