-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
5 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,8 +9,9 @@ | |
// | Author: liu21st <[email protected]> | ||
// +---------------------------------------------------------------------- | ||
|
||
use think\App; | ||
|
||
// [ 应用入口文件 ] | ||
namespace think; | ||
|
||
require __DIR__ . '/../vendor/autoload.php'; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
#!/usr/bin/env php | ||
<?php | ||
namespace think; | ||
|
||
use think\App; | ||
|
||
// 命令行入口文件 | ||
// 加载基础文件 | ||
require __DIR__ . '/vendor/autoload.php'; | ||
|
||
// 应用初始化 | ||
(new App())->console->run(); | ||
(new App())->console->run(); |