Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 2c1f851d499b346aae13de01c6f75c3d > files > 103

php-apc-3.1.15-4.12.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';
    }
}