The constructor of the class \Magento\Framework\View\Result\LayoutFactory can be shortened by using PHP 5.5 class name resolution via ::class

https://github.com/magento/magento2/blob/2.0.0/lib/internal/Magento/Framework/View/Result/LayoutFactory.php#L29

The code above can be shortened:

$instanceName = Layout::class

See: PHP 5.5 class name resolution via ::class

https://github.com/magento/magento2/issues/2962

See also: