Current File : /home/exataengenharia/public_html/vendor/mockery/mockery/library/Mockery/Matcher/IsSame.php
<?php

namespace Mockery\Matcher;

class IsSame extends MatcherAbstract
{
    /**
     * Check if the actual value matches the expected.
     *
     * @param mixed $actual
     * @return bool
     */
    public function match(&$actual)
    {
        return $this->_expected === $actual;
    }

    /**
     * Return a string representation of this Matcher
     *
     * @return string
     */
    public function __toString()
    {
        return '<IsSame>';
    }
}