改名
This commit is contained in:
@@ -31,7 +31,7 @@ defined('TASK_PATH') or define('TASK_PATH', APP_PATH . 'app/Async/');
|
|||||||
defined('LISTENER_PATH') or define('LISTENER_PATH', APP_PATH . 'app/Listener/');
|
defined('LISTENER_PATH') or define('LISTENER_PATH', APP_PATH . 'app/Listener/');
|
||||||
defined('KAFKA_PATH') or define('KAFKA_PATH', APP_PATH . 'app/Kafka/');
|
defined('KAFKA_PATH') or define('KAFKA_PATH', APP_PATH . 'app/Kafka/');
|
||||||
defined('RPC_CLIENT_PATH') or define('RPC_CLIENT_PATH', APP_PATH . 'app/Client/Rpc/');
|
defined('RPC_CLIENT_PATH') or define('RPC_CLIENT_PATH', APP_PATH . 'app/Client/Rpc/');
|
||||||
defined('MODEL_PATH') or define('MODEL_PATH', APP_PATH . 'app/Models/');
|
defined('MODEL_PATH') or define('MODEL_PATH', APP_PATH . 'app/Model/');
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
+4
-4
@@ -30,11 +30,11 @@ class Gii
|
|||||||
|
|
||||||
private InputInterface $input;
|
private InputInterface $input;
|
||||||
|
|
||||||
public string $modelPath = APP_PATH . 'app/Models/';
|
public string $modelPath = APP_PATH . 'app/Model/';
|
||||||
public string $modelNamespace = 'App\\Models\\';
|
public string $modelNamespace = 'App\\Model\\';
|
||||||
|
|
||||||
public string $controllerPath = APP_PATH . 'app/Http/Controllers/';
|
public string $controllerPath = APP_PATH . 'app/Http/Controller/';
|
||||||
public string $controllerNamespace = 'App\\Controllers\\';
|
public string $controllerNamespace = 'App\\Controller\\';
|
||||||
|
|
||||||
|
|
||||||
public static array $createSqls = [];
|
public static array $createSqls = [];
|
||||||
|
|||||||
@@ -24,11 +24,11 @@ abstract class GiiBase
|
|||||||
|
|
||||||
protected InputInterface $input;
|
protected InputInterface $input;
|
||||||
|
|
||||||
public string $modelPath = APP_PATH . 'app/Models/';
|
public string $modelPath = APP_PATH . 'app/Model/';
|
||||||
public string $modelNamespace = 'App\Models\\';
|
public string $modelNamespace = 'App\Model\\';
|
||||||
|
|
||||||
public string $controllerPath = APP_PATH . 'app/Http/Controllers/';
|
public string $controllerPath = APP_PATH . 'app/Http/Controller/';
|
||||||
public string $controllerNamespace = 'App\\Controllers\\';
|
public string $controllerNamespace = 'App\\Controller\\';
|
||||||
|
|
||||||
public ?string $module = null;
|
public ?string $module = null;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user