Create类更名为Build

This commit is contained in:
thinkphp
2015-12-22 15:55:52 +08:00
parent 4d53e9bc19
commit c37aba27d7
3 changed files with 5 additions and 6 deletions

View File

@@ -8,15 +8,14 @@
// +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
namespace think;
class Create
class Build
{
public static function build($build)
public static function run($build)
{
// 锁定
$lockfile = APP_PATH . 'create.lock';
$lockfile = APP_PATH . 'build.lock';
if (is_writable($lockfile)) {
return;
} else {