1234567891011121314151617181920212223242526 |
- <?php
- /**
- * This file is part of webman.
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the MIT-LICENSE.txt
- * Redistributions of files must retain the above copyright notice.
- *
- * @author walkor<[email protected]>
- * @copyright walkor<[email protected]>
- * @link http://www.workerman.net/
- * @license http://www.opensource.org/licenses/mit-license.php MIT License
- */
- // 如果你需要自动依赖注入(包括注解注入)。
- // 请先运行 composer require php-di/php-di && composer require doctrine/annotations
- // 并将下面的代码注释解除,并注释掉最后一行 return new Webman\Container;
- /*$builder = new \DI\ContainerBuilder();
- $builder->addDefinitions(config('dependence', []));
- $builder->useAutowiring(true);
- $builder->useAnnotations(true);
- return $builder->build();*/
- return new Webman\Container;
|