ok

Mini Shell

Direktori : /home2/selectio/public_html/fms-worksuite/vendor/mockery/mockery/library/Mockery/Matcher/
Upload File :
Current File : /home2/selectio/public_html/fms-worksuite/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>';
    }
}

Zerion Mini Shell 1.0