• File: ViewFactory.php
  • Full Path: /home/lef/public_html/wp-content/plugins/wpml-translation-management/classes/ATE/Log/ViewFactory.php
  • File size: 197 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace WPML\TM\ATE\Log;

use function WPML\Container\make;

class ViewFactory {

	public function create() {
		$logs = make( Storage::class )->getAll();

		return new View( $logs );
	}
}