15 lines
197 B
PHP
15 lines
197 B
PHP
<?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 );
|
|
}
|
|
}
|