File "Value.php"

Full Path: /home/warrior1/public_html/wp-content/plugins/mailpoet/vendor-prefixed/doctrine/collections/lib/Doctrine/Common/Collections/Expr/Value.php
File size: 367 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace MailPoetVendor\Doctrine\Common\Collections\Expr;
if (!defined('ABSPATH')) exit;
class Value implements Expression
{
 private $value;
 public function __construct($value)
 {
 $this->value = $value;
 }
 public function getValue()
 {
 return $this->value;
 }
 public function visit(ExpressionVisitor $visitor)
 {
 return $visitor->walkValue($this);
 }
}