Submit
Path:
~
/
/
usr
/
local
/
psa
/
admin
/
plib
/
modules
/
wp-toolkit
/
vendor
/
robmorgan
/
phinx
/
src
/
Phinx
/
Util
/
File Content:
Expression.php
<?php /** * MIT License * For full license information, please view the LICENSE file that was distributed with this source code. */ namespace WPToolkitDependenciesIsolationPrefix\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); } }
Submit
FILE
FOLDER
INFO
Name
Size
Permission
Action
Expression.php
766 bytes
0644
Literal.php
780 bytes
0644
Util.php
10084 bytes
0644
N4ST4R_ID | Naxtarrr