518 lines
16 KiB
YAML
518 lines
16 KiB
YAML
|
name: DB
|
||
|
class_comment: '# * @method static \Illuminate\Database\Connection connection(string|null
|
||
|
$name = null)
|
||
|
|
||
|
# * @method static \Illuminate\Database\ConnectionInterface connectUsing(string
|
||
|
$name, array $config, bool $force = false)
|
||
|
|
||
|
# * @method static void purge(string|null $name = null)
|
||
|
|
||
|
# * @method static void disconnect(string|null $name = null)
|
||
|
|
||
|
# * @method static \Illuminate\Database\Connection reconnect(string|null $name =
|
||
|
null)
|
||
|
|
||
|
# * @method static mixed usingConnection(string $name, callable $callback)
|
||
|
|
||
|
# * @method static string getDefaultConnection()
|
||
|
|
||
|
# * @method static void setDefaultConnection(string $name)
|
||
|
|
||
|
# * @method static string[] supportedDrivers()
|
||
|
|
||
|
# * @method static string[] availableDrivers()
|
||
|
|
||
|
# * @method static void extend(string $name, callable $resolver)
|
||
|
|
||
|
# * @method static void forgetExtension(string $name)
|
||
|
|
||
|
# * @method static array getConnections()
|
||
|
|
||
|
# * @method static void setReconnector(callable $reconnector)
|
||
|
|
||
|
# * @method static \Illuminate\Database\DatabaseManager setApplication(\Illuminate\Contracts\Foundation\Application
|
||
|
$app)
|
||
|
|
||
|
# * @method static void macro(string $name, object|callable $macro, object|callable
|
||
|
$macro = null)
|
||
|
|
||
|
# * @method static void mixin(object $mixin, bool $replace = true)
|
||
|
|
||
|
# * @method static bool hasMacro(string $name)
|
||
|
|
||
|
# * @method static void flushMacros()
|
||
|
|
||
|
# * @method static mixed macroCall(string $method, array $parameters)
|
||
|
|
||
|
# * @method static void useDefaultQueryGrammar()
|
||
|
|
||
|
# * @method static void useDefaultSchemaGrammar()
|
||
|
|
||
|
# * @method static void useDefaultPostProcessor()
|
||
|
|
||
|
# * @method static \Illuminate\Database\Schema\Builder getSchemaBuilder()
|
||
|
|
||
|
# * @method static \Illuminate\Database\Query\Builder table(\Closure|\Illuminate\Database\Query\Builder|\Illuminate\Contracts\Database\Query\Expression|string
|
||
|
$table, string|null $as = null)
|
||
|
|
||
|
# * @method static \Illuminate\Database\Query\Builder query()
|
||
|
|
||
|
# * @method static mixed selectOne(string $query, array $bindings = [], bool $useReadPdo
|
||
|
= true)
|
||
|
|
||
|
# * @method static mixed scalar(string $query, array $bindings = [], bool $useReadPdo
|
||
|
= true)
|
||
|
|
||
|
# * @method static array selectFromWriteConnection(string $query, array $bindings
|
||
|
= [])
|
||
|
|
||
|
# * @method static array select(string $query, array $bindings = [], bool $useReadPdo
|
||
|
= true)
|
||
|
|
||
|
# * @method static array selectResultSets(string $query, array $bindings = [], bool
|
||
|
$useReadPdo = true)
|
||
|
|
||
|
# * @method static \Generator cursor(string $query, array $bindings = [], bool $useReadPdo
|
||
|
= true)
|
||
|
|
||
|
# * @method static bool insert(string $query, array $bindings = [])
|
||
|
|
||
|
# * @method static int update(string $query, array $bindings = [])
|
||
|
|
||
|
# * @method static int delete(string $query, array $bindings = [])
|
||
|
|
||
|
# * @method static bool statement(string $query, array $bindings = [])
|
||
|
|
||
|
# * @method static int affectingStatement(string $query, array $bindings = [])
|
||
|
|
||
|
# * @method static bool unprepared(string $query)
|
||
|
|
||
|
# * @method static array pretend(\Closure $callback)
|
||
|
|
||
|
# * @method static mixed withoutPretending(\Closure $callback)
|
||
|
|
||
|
# * @method static void bindValues(\PDOStatement $statement, array $bindings)
|
||
|
|
||
|
# * @method static array prepareBindings(array $bindings)
|
||
|
|
||
|
# * @method static void logQuery(string $query, array $bindings, float|null $time
|
||
|
= null)
|
||
|
|
||
|
# * @method static void whenQueryingForLongerThan(\DateTimeInterface|\Carbon\CarbonInterval|float|int
|
||
|
$threshold, callable $handler)
|
||
|
|
||
|
# * @method static void allowQueryDurationHandlersToRunAgain()
|
||
|
|
||
|
# * @method static float totalQueryDuration()
|
||
|
|
||
|
# * @method static void resetTotalQueryDuration()
|
||
|
|
||
|
# * @method static void reconnectIfMissingConnection()
|
||
|
|
||
|
# * @method static \Illuminate\Database\Connection beforeStartingTransaction(\Closure
|
||
|
$callback)
|
||
|
|
||
|
# * @method static \Illuminate\Database\Connection beforeExecuting(\Closure $callback)
|
||
|
|
||
|
# * @method static void listen(\Closure $callback)
|
||
|
|
||
|
# * @method static \Illuminate\Contracts\Database\Query\Expression raw(mixed $value)
|
||
|
|
||
|
# * @method static string escape(string|float|int|bool|null $value, bool $binary
|
||
|
= false)
|
||
|
|
||
|
# * @method static bool hasModifiedRecords()
|
||
|
|
||
|
# * @method static void recordsHaveBeenModified(bool $value = true)
|
||
|
|
||
|
# * @method static \Illuminate\Database\Connection setRecordModificationState(bool
|
||
|
$value)
|
||
|
|
||
|
# * @method static void forgetRecordModificationState()
|
||
|
|
||
|
# * @method static \Illuminate\Database\Connection useWriteConnectionWhenReading(bool
|
||
|
$value = true)
|
||
|
|
||
|
# * @method static \PDO getPdo()
|
||
|
|
||
|
# * @method static \PDO|\Closure|null getRawPdo()
|
||
|
|
||
|
# * @method static \PDO getReadPdo()
|
||
|
|
||
|
# * @method static \PDO|\Closure|null getRawReadPdo()
|
||
|
|
||
|
# * @method static \Illuminate\Database\Connection setPdo(\PDO|\Closure|null $pdo)
|
||
|
|
||
|
# * @method static \Illuminate\Database\Connection setReadPdo(\PDO|\Closure|null
|
||
|
$pdo)
|
||
|
|
||
|
# * @method static string|null getName()
|
||
|
|
||
|
# * @method static string|null getNameWithReadWriteType()
|
||
|
|
||
|
# * @method static mixed getConfig(string|null $option = null)
|
||
|
|
||
|
# * @method static string getDriverName()
|
||
|
|
||
|
# * @method static \Illuminate\Database\Query\Grammars\Grammar getQueryGrammar()
|
||
|
|
||
|
# * @method static \Illuminate\Database\Connection setQueryGrammar(\Illuminate\Database\Query\Grammars\Grammar
|
||
|
$grammar)
|
||
|
|
||
|
# * @method static \Illuminate\Database\Schema\Grammars\Grammar getSchemaGrammar()
|
||
|
|
||
|
# * @method static \Illuminate\Database\Connection setSchemaGrammar(\Illuminate\Database\Schema\Grammars\Grammar
|
||
|
$grammar)
|
||
|
|
||
|
# * @method static \Illuminate\Database\Query\Processors\Processor getPostProcessor()
|
||
|
|
||
|
# * @method static \Illuminate\Database\Connection setPostProcessor(\Illuminate\Database\Query\Processors\Processor
|
||
|
$processor)
|
||
|
|
||
|
# * @method static \Illuminate\Contracts\Events\Dispatcher getEventDispatcher()
|
||
|
|
||
|
# * @method static \Illuminate\Database\Connection setEventDispatcher(\Illuminate\Contracts\Events\Dispatcher
|
||
|
$events)
|
||
|
|
||
|
# * @method static void unsetEventDispatcher()
|
||
|
|
||
|
# * @method static \Illuminate\Database\Connection setTransactionManager(\Illuminate\Database\DatabaseTransactionsManager
|
||
|
$manager)
|
||
|
|
||
|
# * @method static void unsetTransactionManager()
|
||
|
|
||
|
# * @method static bool pretending()
|
||
|
|
||
|
# * @method static array getQueryLog()
|
||
|
|
||
|
# * @method static array getRawQueryLog()
|
||
|
|
||
|
# * @method static void flushQueryLog()
|
||
|
|
||
|
# * @method static void enableQueryLog()
|
||
|
|
||
|
# * @method static void disableQueryLog()
|
||
|
|
||
|
# * @method static bool logging()
|
||
|
|
||
|
# * @method static string getDatabaseName()
|
||
|
|
||
|
# * @method static \Illuminate\Database\Connection setDatabaseName(string $database)
|
||
|
|
||
|
# * @method static \Illuminate\Database\Connection setReadWriteType(string|null
|
||
|
$readWriteType)
|
||
|
|
||
|
# * @method static string getTablePrefix()
|
||
|
|
||
|
# * @method static \Illuminate\Database\Connection setTablePrefix(string $prefix)
|
||
|
|
||
|
# * @method static \Illuminate\Database\Grammar withTablePrefix(\Illuminate\Database\Grammar
|
||
|
$grammar)
|
||
|
|
||
|
# * @method static string getServerVersion()
|
||
|
|
||
|
# * @method static void resolverFor(string $driver, \Closure $callback)
|
||
|
|
||
|
# * @method static mixed getResolver(string $driver)
|
||
|
|
||
|
# * @method static mixed transaction(\Closure $callback, int $attempts = 1)
|
||
|
|
||
|
# * @method static void beginTransaction()
|
||
|
|
||
|
# * @method static void commit()
|
||
|
|
||
|
# * @method static void rollBack(int|null $toLevel = null)
|
||
|
|
||
|
# * @method static int transactionLevel()
|
||
|
|
||
|
# * @method static void afterCommit(callable $callback)
|
||
|
|
||
|
# *
|
||
|
|
||
|
# * @see \Illuminate\Database\DatabaseManager'
|
||
|
dependencies:
|
||
|
- name: FreshCommand
|
||
|
type: class
|
||
|
source: Illuminate\Database\Console\Migrations\FreshCommand
|
||
|
- name: RefreshCommand
|
||
|
type: class
|
||
|
source: Illuminate\Database\Console\Migrations\RefreshCommand
|
||
|
- name: ResetCommand
|
||
|
type: class
|
||
|
source: Illuminate\Database\Console\Migrations\ResetCommand
|
||
|
- name: WipeCommand
|
||
|
type: class
|
||
|
source: Illuminate\Database\Console\WipeCommand
|
||
|
properties: []
|
||
|
methods:
|
||
|
- name: prohibitDestructiveCommands
|
||
|
visibility: public
|
||
|
parameters:
|
||
|
- name: prohibit
|
||
|
default: 'true'
|
||
|
comment: '# * @method static \Illuminate\Database\Connection connection(string|null
|
||
|
$name = null)
|
||
|
|
||
|
# * @method static \Illuminate\Database\ConnectionInterface connectUsing(string
|
||
|
$name, array $config, bool $force = false)
|
||
|
|
||
|
# * @method static void purge(string|null $name = null)
|
||
|
|
||
|
# * @method static void disconnect(string|null $name = null)
|
||
|
|
||
|
# * @method static \Illuminate\Database\Connection reconnect(string|null $name
|
||
|
= null)
|
||
|
|
||
|
# * @method static mixed usingConnection(string $name, callable $callback)
|
||
|
|
||
|
# * @method static string getDefaultConnection()
|
||
|
|
||
|
# * @method static void setDefaultConnection(string $name)
|
||
|
|
||
|
# * @method static string[] supportedDrivers()
|
||
|
|
||
|
# * @method static string[] availableDrivers()
|
||
|
|
||
|
# * @method static void extend(string $name, callable $resolver)
|
||
|
|
||
|
# * @method static void forgetExtension(string $name)
|
||
|
|
||
|
# * @method static array getConnections()
|
||
|
|
||
|
# * @method static void setReconnector(callable $reconnector)
|
||
|
|
||
|
# * @method static \Illuminate\Database\DatabaseManager setApplication(\Illuminate\Contracts\Foundation\Application
|
||
|
$app)
|
||
|
|
||
|
# * @method static void macro(string $name, object|callable $macro, object|callable
|
||
|
$macro = null)
|
||
|
|
||
|
# * @method static void mixin(object $mixin, bool $replace = true)
|
||
|
|
||
|
# * @method static bool hasMacro(string $name)
|
||
|
|
||
|
# * @method static void flushMacros()
|
||
|
|
||
|
# * @method static mixed macroCall(string $method, array $parameters)
|
||
|
|
||
|
# * @method static void useDefaultQueryGrammar()
|
||
|
|
||
|
# * @method static void useDefaultSchemaGrammar()
|
||
|
|
||
|
# * @method static void useDefaultPostProcessor()
|
||
|
|
||
|
# * @method static \Illuminate\Database\Schema\Builder getSchemaBuilder()
|
||
|
|
||
|
# * @method static \Illuminate\Database\Query\Builder table(\Closure|\Illuminate\Database\Query\Builder|\Illuminate\Contracts\Database\Query\Expression|string
|
||
|
$table, string|null $as = null)
|
||
|
|
||
|
# * @method static \Illuminate\Database\Query\Builder query()
|
||
|
|
||
|
# * @method static mixed selectOne(string $query, array $bindings = [], bool $useReadPdo
|
||
|
= true)
|
||
|
|
||
|
# * @method static mixed scalar(string $query, array $bindings = [], bool $useReadPdo
|
||
|
= true)
|
||
|
|
||
|
# * @method static array selectFromWriteConnection(string $query, array $bindings
|
||
|
= [])
|
||
|
|
||
|
# * @method static array select(string $query, array $bindings = [], bool $useReadPdo
|
||
|
= true)
|
||
|
|
||
|
# * @method static array selectResultSets(string $query, array $bindings = [],
|
||
|
bool $useReadPdo = true)
|
||
|
|
||
|
# * @method static \Generator cursor(string $query, array $bindings = [], bool
|
||
|
$useReadPdo = true)
|
||
|
|
||
|
# * @method static bool insert(string $query, array $bindings = [])
|
||
|
|
||
|
# * @method static int update(string $query, array $bindings = [])
|
||
|
|
||
|
# * @method static int delete(string $query, array $bindings = [])
|
||
|
|
||
|
# * @method static bool statement(string $query, array $bindings = [])
|
||
|
|
||
|
# * @method static int affectingStatement(string $query, array $bindings = [])
|
||
|
|
||
|
# * @method static bool unprepared(string $query)
|
||
|
|
||
|
# * @method static array pretend(\Closure $callback)
|
||
|
|
||
|
# * @method static mixed withoutPretending(\Closure $callback)
|
||
|
|
||
|
# * @method static void bindValues(\PDOStatement $statement, array $bindings)
|
||
|
|
||
|
# * @method static array prepareBindings(array $bindings)
|
||
|
|
||
|
# * @method static void logQuery(string $query, array $bindings, float|null $time
|
||
|
= null)
|
||
|
|
||
|
# * @method static void whenQueryingForLongerThan(\DateTimeInterface|\Carbon\CarbonInterval|float|int
|
||
|
$threshold, callable $handler)
|
||
|
|
||
|
# * @method static void allowQueryDurationHandlersToRunAgain()
|
||
|
|
||
|
# * @method static float totalQueryDuration()
|
||
|
|
||
|
# * @method static void resetTotalQueryDuration()
|
||
|
|
||
|
# * @method static void reconnectIfMissingConnection()
|
||
|
|
||
|
# * @method static \Illuminate\Database\Connection beforeStartingTransaction(\Closure
|
||
|
$callback)
|
||
|
|
||
|
# * @method static \Illuminate\Database\Connection beforeExecuting(\Closure $callback)
|
||
|
|
||
|
# * @method static void listen(\Closure $callback)
|
||
|
|
||
|
# * @method static \Illuminate\Contracts\Database\Query\Expression raw(mixed $value)
|
||
|
|
||
|
# * @method static string escape(string|float|int|bool|null $value, bool $binary
|
||
|
= false)
|
||
|
|
||
|
# * @method static bool hasModifiedRecords()
|
||
|
|
||
|
# * @method static void recordsHaveBeenModified(bool $value = true)
|
||
|
|
||
|
# * @method static \Illuminate\Database\Connection setRecordModificationState(bool
|
||
|
$value)
|
||
|
|
||
|
# * @method static void forgetRecordModificationState()
|
||
|
|
||
|
# * @method static \Illuminate\Database\Connection useWriteConnectionWhenReading(bool
|
||
|
$value = true)
|
||
|
|
||
|
# * @method static \PDO getPdo()
|
||
|
|
||
|
# * @method static \PDO|\Closure|null getRawPdo()
|
||
|
|
||
|
# * @method static \PDO getReadPdo()
|
||
|
|
||
|
# * @method static \PDO|\Closure|null getRawReadPdo()
|
||
|
|
||
|
# * @method static \Illuminate\Database\Connection setPdo(\PDO|\Closure|null $pdo)
|
||
|
|
||
|
# * @method static \Illuminate\Database\Connection setReadPdo(\PDO|\Closure|null
|
||
|
$pdo)
|
||
|
|
||
|
# * @method static string|null getName()
|
||
|
|
||
|
# * @method static string|null getNameWithReadWriteType()
|
||
|
|
||
|
# * @method static mixed getConfig(string|null $option = null)
|
||
|
|
||
|
# * @method static string getDriverName()
|
||
|
|
||
|
# * @method static \Illuminate\Database\Query\Grammars\Grammar getQueryGrammar()
|
||
|
|
||
|
# * @method static \Illuminate\Database\Connection setQueryGrammar(\Illuminate\Database\Query\Grammars\Grammar
|
||
|
$grammar)
|
||
|
|
||
|
# * @method static \Illuminate\Database\Schema\Grammars\Grammar getSchemaGrammar()
|
||
|
|
||
|
# * @method static \Illuminate\Database\Connection setSchemaGrammar(\Illuminate\Database\Schema\Grammars\Grammar
|
||
|
$grammar)
|
||
|
|
||
|
# * @method static \Illuminate\Database\Query\Processors\Processor getPostProcessor()
|
||
|
|
||
|
# * @method static \Illuminate\Database\Connection setPostProcessor(\Illuminate\Database\Query\Processors\Processor
|
||
|
$processor)
|
||
|
|
||
|
# * @method static \Illuminate\Contracts\Events\Dispatcher getEventDispatcher()
|
||
|
|
||
|
# * @method static \Illuminate\Database\Connection setEventDispatcher(\Illuminate\Contracts\Events\Dispatcher
|
||
|
$events)
|
||
|
|
||
|
# * @method static void unsetEventDispatcher()
|
||
|
|
||
|
# * @method static \Illuminate\Database\Connection setTransactionManager(\Illuminate\Database\DatabaseTransactionsManager
|
||
|
$manager)
|
||
|
|
||
|
# * @method static void unsetTransactionManager()
|
||
|
|
||
|
# * @method static bool pretending()
|
||
|
|
||
|
# * @method static array getQueryLog()
|
||
|
|
||
|
# * @method static array getRawQueryLog()
|
||
|
|
||
|
# * @method static void flushQueryLog()
|
||
|
|
||
|
# * @method static void enableQueryLog()
|
||
|
|
||
|
# * @method static void disableQueryLog()
|
||
|
|
||
|
# * @method static bool logging()
|
||
|
|
||
|
# * @method static string getDatabaseName()
|
||
|
|
||
|
# * @method static \Illuminate\Database\Connection setDatabaseName(string $database)
|
||
|
|
||
|
# * @method static \Illuminate\Database\Connection setReadWriteType(string|null
|
||
|
$readWriteType)
|
||
|
|
||
|
# * @method static string getTablePrefix()
|
||
|
|
||
|
# * @method static \Illuminate\Database\Connection setTablePrefix(string $prefix)
|
||
|
|
||
|
# * @method static \Illuminate\Database\Grammar withTablePrefix(\Illuminate\Database\Grammar
|
||
|
$grammar)
|
||
|
|
||
|
# * @method static string getServerVersion()
|
||
|
|
||
|
# * @method static void resolverFor(string $driver, \Closure $callback)
|
||
|
|
||
|
# * @method static mixed getResolver(string $driver)
|
||
|
|
||
|
# * @method static mixed transaction(\Closure $callback, int $attempts = 1)
|
||
|
|
||
|
# * @method static void beginTransaction()
|
||
|
|
||
|
# * @method static void commit()
|
||
|
|
||
|
# * @method static void rollBack(int|null $toLevel = null)
|
||
|
|
||
|
# * @method static int transactionLevel()
|
||
|
|
||
|
# * @method static void afterCommit(callable $callback)
|
||
|
|
||
|
# *
|
||
|
|
||
|
# * @see \Illuminate\Database\DatabaseManager
|
||
|
|
||
|
# */
|
||
|
|
||
|
# class DB extends Facade
|
||
|
|
||
|
# {
|
||
|
|
||
|
# /**
|
||
|
|
||
|
# * Indicate if destructive Artisan commands should be prohibited.
|
||
|
|
||
|
# *
|
||
|
|
||
|
# * Prohibits: db:wipe, migrate:fresh, migrate:refresh, and migrate:reset
|
||
|
|
||
|
# *
|
||
|
|
||
|
# * @param bool $prohibit
|
||
|
|
||
|
# * @return void'
|
||
|
- name: getFacadeAccessor
|
||
|
visibility: protected
|
||
|
parameters: []
|
||
|
comment: '# * Get the registered name of the component.
|
||
|
|
||
|
# *
|
||
|
|
||
|
# * @return string'
|
||
|
traits:
|
||
|
- Illuminate\Database\Console\Migrations\FreshCommand
|
||
|
- Illuminate\Database\Console\Migrations\RefreshCommand
|
||
|
- Illuminate\Database\Console\Migrations\ResetCommand
|
||
|
- Illuminate\Database\Console\WipeCommand
|
||
|
interfaces: []
|