Ai
1 Star 0 Fork 0

.何以致契阔/thinkphp 数据库迁移工具

Create your Gitee Account
Explore and code with more than 13.5 million developers,Free private repositories !:)
Sign up
文件
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
Literal.php 745 Bytes
Copy Edit Raw Blame History
.何以致契阔 authored 2024-10-08 09:46 +08:00 . pd
<?php
/**
* MIT License
* For full license information, please view the LICENSE file that was distributed with this source code.
*/
namespace Phinx\Util;
class Literal
{
/**
* @var string The literal's value
*/
protected $value;
/**
* @param string $value The literal's value
*/
public function __construct(string $value)
{
$this->value = $value;
}
/**
* @return string Returns the literal's value
*/
public function __toString(): string
{
return $this->value;
}
/**
* @param string $value The literal's value
* @return self
*/
public static function from(string $value): Literal
{
return new self($value);
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/tlan_turing/turing-migration.git
git@gitee.com:tlan_turing/turing-migration.git
tlan_turing
turing-migration
thinkphp 数据库迁移工具
master

Search