mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-23 03:50:56 +08:00
19 lines
292 B
PHP
19 lines
292 B
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use App\Library\Mvc\View as MyView;
|
|
|
|
class View extends Provider
|
|
{
|
|
|
|
protected $serviceName = 'view';
|
|
|
|
public function register()
|
|
{
|
|
$this->di->setShared($this->serviceName, function () {
|
|
return new MyView();
|
|
});
|
|
}
|
|
|
|
} |