本文整理汇总了PHP中Customization::reorder方法的典型用法代码示例。如果您正苦于以下问题:PHP Customization::reorder方法的具体用法?PHP Customization::reorder怎么用?PHP Customization::reorder使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Customization
的用法示例。
在下文中一共展示了Customization::reorder方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testReorder
/**
* @covers \Magento\Framework\View\Design\Theme\Customization::reorder
* @dataProvider customFileContent
*/
public function testReorder($sequence, $filesContent)
{
$files = array();
$type = 'sample-type';
foreach ($filesContent as $fileContent) {
$file = $this->getMock('Magento\\Core\\Model\\Theme\\File', array('__wakeup', 'save'), array(), '', false);
$file->expects($fileContent['isCalled'])->method('save')->will($this->returnSelf());
$file->setData($fileContent['content']);
$files[] = $file;
}
$this->fileProvider->expects($this->once())->method('getItems')->with($this->theme, array('file_type' => $type))->will($this->returnValue($files));
$this->assertInstanceOf('Magento\\Framework\\View\\Design\\Theme\\CustomizationInterface', $this->model->reorder($type, $sequence));
}