JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr{ gilour

File "BaseMatcher.php"

Full Path: /var/www/laravel_filter/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/BaseMatcher.php
File size: 565 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace Hamcrest;

/*
 Copyright (c) 2009 hamcrest.org
 */

/**
 * BaseClass for all Matcher implementations.
 *
 * @see Hamcrest\Matcher
 */
abstract class BaseMatcher implements Matcher
{

    public function describeMismatch($item, Description $description)
    {
        $description->appendText('was ')->appendValue($item);
    }

    public function __toString()
    {
        return StringDescription::toString($this);
    }

    public function __invoke()
    {
        return call_user_func_array(array($this, 'matches'), func_get_args());
    }
}