1:  2:  3:  4:  5:  6:  7:  8:  9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 
<?php
/*
 * This file is part of the webmozart/expression package.
 *
 * (c) Bernhard Schussek <bschussek@gmail.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
namespace Webmozart\Expression\Constraint;
use Webmozart\Expression\Expression;
use Webmozart\Expression\Logic\Literal;
use Webmozart\Expression\Util\StringUtil;
/**
 * Checks that a value is identical to another value.
 *
 * The comparison is done using PHP's "===" equality operator.
 *
 * @since  1.0
 *
 * @author Bernhard Schussek <bschussek@gmail.com>
 */
final class Same extends Literal
{
    /**
     * @var mixed
     */
    private $comparedValue;
    /**
     * Creates the expression.
     *
     * @param mixed $comparedValue The compared value.
     */
    public function __construct($comparedValue)
    {
        $this->comparedValue = $comparedValue;
    }
    /**
     * Returns the compared value.
     *
     * @return mixed The compared value.
     */
    public function getComparedValue()
    {
        return $this->comparedValue;
    }
    /**
     * {@inheritdoc}
     */
    public function evaluate($value)
    {
        return $this->comparedValue === $value;
    }
    /**
     * {@inheritdoc}
     */
    public function equivalentTo(Expression $other)
    {
        if ($other instanceof In && $other->isStrict()) {
            return array($this->comparedValue) === $other->getAcceptedValues();
        }
        // Since this class is final, we can check with instanceof
        return $other instanceof $this && $this->comparedValue === $other->comparedValue;
    }
    /**
     * {@inheritdoc}
     */
    public function toString()
    {
        return '==='.StringUtil::formatValue($this->comparedValue);
    }
}