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
standardize EOLs to output diffs properly on Windows
[phpt.git]
/
src
/
PHPT
/
Section
/
TEST.php
blob
4888f89217bb83a9b703d46bd6d547c1b8c2a8df
1
<
?php
2
3
class
PHPT_Section_TEST
implements
PHPT_Section
4
{
5
private
$_data
=
''
;
6
7
public function
__construct
(
$data
)
8
{
9
$this
->
_data
=
$data
;
10
}
11
12
public function
__toString
()
13
{
14
return
$this
->
_data
;
15
}
16
}