Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 467e536d4a9438075b4f235b0a64815c > files > 103

php-apc-3.1.15-4.17.mga4.x86_64.rpm

<?php

class PHPUnit_Framework_Constraint_IsTrue extends PHPUnit_Framework_Constraint
{
    protected function matches($other)
    {
        return $other === TRUE;
    }

    public function toString()
    {
        return 'is true';
    }
}