Composer Version Change

This commit is contained in:
2024-02-05 00:00:23 +08:00
parent 20678a6a0c
commit 6f751ead83
789 changed files with 135417 additions and 18510 deletions
+41
View File
@@ -0,0 +1,41 @@
<?php
/**
* MIT License
* For full license information, please view the LICENSE file that was distributed with this source code.
*/
namespace Phinx\Util;
class Expression
{
/**
* @var string The expression
*/
protected $value;
/**
* @param string $value The expression
*/
public function __construct(string $value)
{
$this->value = $value;
}
/**
* @return string Returns the expression
*/
public function __toString(): string
{
return $this->value;
}
/**
* @param string $value The expression
* @return self
*/
public static function from(string $value): Expression
{
return new self($value);
}
}