Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 3447e39793d15911bf3fc0a8996e2c90 > files > 103

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