repo.or.cz
/
phpt.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
add result property to Case (re #36)
[phpt.git]
/
tests
/
Case
/
_foobar-validator.inc
blob
e41f9037abc3bf99647c8bd3142096c2a0ec10a6
1
<?php
2
3
class FooBarValidator implements PHPT_Case_Validator
4
{
5
public $return = true;
6
public function validate(PHPT_Case $validate) {
7
8
}
9
10
public function is(PHPT_Case $case) {
11
return $this->return;
12
}
13
}